Skip to content

Commit

Permalink
Use correct tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
ash-jc-allen committed Aug 27, 2024
1 parent 0197898 commit 48c0ba9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Models/ShortURL.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
class ShortURL extends Model
{
/**
* @extends Factory<ShortURL>
* @use Factory<ShortURL>
*/
use HasFactory;

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.1 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURL describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURL describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 11.*

Class AshAllenDesign\ShortURL\Models\ShortURL uses generic trait Illuminate\Database\Eloquent\Factories\HasFactory but does not specify its types: TFactory

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 11.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURL describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURL describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 11.*

Class AshAllenDesign\ShortURL\Models\ShortURL uses generic trait Illuminate\Database\Eloquent\Factories\HasFactory but does not specify its types: TFactory

Check failure on line 40 in src/Models/ShortURL.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 11.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURL describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Expand Down
2 changes: 1 addition & 1 deletion src/Models/ShortURLVisit.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
class ShortURLVisit extends Model
{
/**
* @extends Factory<ShortURLVisit>
* @use Factory<ShortURLVisit>
*/
use HasFactory;

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.1 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURLVisit describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURLVisit describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 11.*

Class AshAllenDesign\ShortURL\Models\ShortURLVisit uses generic trait Illuminate\Database\Eloquent\Factories\HasFactory but does not specify its types: TFactory

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.2 - Laravel 11.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURLVisit describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 10.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURLVisit describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 11.*

Class AshAllenDesign\ShortURL\Models\ShortURLVisit uses generic trait Illuminate\Database\Eloquent\Factories\HasFactory but does not specify its types: TFactory

Check failure on line 32 in src/Models/ShortURLVisit.php

View workflow job for this annotation

GitHub Actions / PHP8.3 - Laravel 11.*

The @use tag of class AshAllenDesign\ShortURL\Models\ShortURLVisit describes Illuminate\Database\Eloquent\Factories\Factory but the class uses Illuminate\Database\Eloquent\Factories\HasFactory.

Expand Down

0 comments on commit 48c0ba9

Please sign in to comment.