Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AJAYSINGHBISHT12 committed Jul 9, 2023
1 parent 106c6b5 commit a5e2e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Modules\CodeTrek\Database\Factories;

use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Database\Eloquent\factories\Factory;

Check failure on line 5 in Modules/CodeTrek/Database/factories/CodeTrekApplicantFactory.php

View workflow job for this annotation

GitHub Actions / Larastan

Class Illuminate\Database\Eloquent\Factories\Factory referenced with incorrect case: Illuminate\Database\Eloquent\factories\Factory.
use Modules\CodeTrek\Entities\CodeTrekApplicant;

class CodeTrekApplicantFactory extends Factory

Check failure on line 8 in Modules/CodeTrek/Database/factories/CodeTrekApplicantFactory.php

View workflow job for this annotation

GitHub Actions / Larastan

Class Illuminate\Database\Eloquent\Factories\Factory referenced with incorrect case: Illuminate\Database\Eloquent\factories\Factory.
Expand Down
2 changes: 1 addition & 1 deletion Modules/CodeTrek/Entities/CodeTrekApplicant.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\SoftDeletes;
use Modules\Operations\Entities\OfficeLocation;
use Modules\CodeTrek\Database\factories\CodeTrekApplicantFactory;
use Modules\CodeTrek\Database\Factories\CodeTrekApplicantFactory;
use Modules\User\Entities\User;

class CodeTrekApplicant extends Model
Expand Down

0 comments on commit a5e2e2b

Please sign in to comment.