-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0183137
commit aee14e4
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
namespace AshAllenDesign\ShortURL\Models; | ||
|
||
use AshAllenDesign\ShortURL\Models\Factories\ShortURLFactory; | ||
use Carbon\CarbonInterface; | ||
use Illuminate\Database\Eloquent\Collection; | ||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
|
@@ -35,7 +36,7 @@ | |
class ShortURL extends Model | ||
{ | ||
/** | ||
* @use HasFactory<ShortURL> | ||
* @use HasFactory<ShortURLFactory> | ||
*/ | ||
use HasFactory; | ||
Check failure on line 41 in src/Models/ShortURL.php GitHub Actions / PHP8.1 - Laravel 10.*
Check failure on line 41 in src/Models/ShortURL.php GitHub Actions / PHP8.2 - Laravel 10.*
Check failure on line 41 in src/Models/ShortURL.php GitHub Actions / PHP8.3 - Laravel 10.*
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
namespace AshAllenDesign\ShortURL\Models; | ||
|
||
use AshAllenDesign\ShortURL\Models\Factories\ShortURLVisitFactory; | ||
use Carbon\CarbonInterface; | ||
use Illuminate\Database\Eloquent\Factories\Factory; | ||
use Illuminate\Database\Eloquent\Factories\HasFactory; | ||
|
@@ -27,7 +28,7 @@ | |
class ShortURLVisit extends Model | ||
{ | ||
/** | ||
* @use HasFactory<ShortURLVisit> | ||
* @use HasFactory<ShortURLVisitFactory> | ||
*/ | ||
use HasFactory; | ||
Check failure on line 33 in src/Models/ShortURLVisit.php GitHub Actions / PHP8.1 - Laravel 10.*
Check failure on line 33 in src/Models/ShortURLVisit.php GitHub Actions / PHP8.2 - Laravel 10.*
Check failure on line 33 in src/Models/ShortURLVisit.php GitHub Actions / PHP8.3 - Laravel 10.*
|
||
|
||
|