Skip to content
This repository was archived by the owner on Feb 4, 2024. It is now read-only.

Commit b52ce2e

Browse files
Merge pull request #1966 from familytree365/analysis-ajRW50
Apply fixes from StyleCI
2 parents 4a230b1 + 06e0990 commit b52ce2e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/Http/Requests/ValidateRepositoryRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function rules()
1818
return [
1919
'description' => 'required|max:50',
2020
'name' => 'required|max:50',
21-
// 'type_id' => 'required|max:20',
21+
// 'type_id' => 'required|max:20',
2222
'date' => 'required|max:24',
2323
'is_active' => 'boolean',
2424
];

database/factories/RepositoryFactory.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ public function definition()
4242
'www' => $this->faker->url(),
4343
'name' => $this->faker->name(),
4444
'description' => $this->faker->text(50),
45-
// 'type_id' => Type::create([
46-
// 'name' => $this->faker->word(),
47-
// 'description' => $this->faker->text(50),
48-
// 'is_active' => $this->faker->randomDigit('0', '1'),
49-
// ])->id,
45+
// 'type_id' => Type::create([
46+
// 'name' => $this->faker->word(),
47+
// 'description' => $this->faker->text(50),
48+
// 'is_active' => $this->faker->randomDigit('0', '1'),
49+
// ])->id,
5050
'is_active' => $this->faker->randomDigit('0', '1'),
5151
];
5252
}

0 commit comments

Comments
 (0)