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

Commit

Permalink
Merge pull request #1966 from familytree365/analysis-ajRW50
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
curtisdelicata authored Apr 27, 2022
2 parents 4a230b1 + 06e0990 commit b52ce2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Http/Requests/ValidateRepositoryRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function rules()
return [
'description' => 'required|max:50',
'name' => 'required|max:50',
// 'type_id' => 'required|max:20',
// 'type_id' => 'required|max:20',
'date' => 'required|max:24',
'is_active' => 'boolean',
];
Expand Down
10 changes: 5 additions & 5 deletions database/factories/RepositoryFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public function definition()
'www' => $this->faker->url(),
'name' => $this->faker->name(),
'description' => $this->faker->text(50),
// 'type_id' => Type::create([
// 'name' => $this->faker->word(),
// 'description' => $this->faker->text(50),
// 'is_active' => $this->faker->randomDigit('0', '1'),
// ])->id,
// 'type_id' => Type::create([
// 'name' => $this->faker->word(),
// 'description' => $this->faker->text(50),
// 'is_active' => $this->faker->randomDigit('0', '1'),
// ])->id,
'is_active' => $this->faker->randomDigit('0', '1'),
];
}
Expand Down

0 comments on commit b52ce2e

Please sign in to comment.