generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 118
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
849c5d1
commit a04aae5
Showing
7 changed files
with
18 additions
and
16 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
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
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
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
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
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
*/ | ||
class TelegraphBot extends Model implements Storable | ||
{ | ||
/** @use HasFactory<TelegraphBotFactory> */ | ||
use HasFactory; | ||
Check failure on line 40 in src/Models/TelegraphBot.php GitHub Actions / phpstan
|
||
use HasStorage; | ||
|
||
|
@@ -93,7 +94,7 @@ public static function fromToken(string $token): TelegraphBot | |
} | ||
|
||
/** | ||
* @return HasMany<TelegraphChat> | ||
* @return HasMany<TelegraphChat, $this> | ||
*/ | ||
public function chats(): HasMany | ||
Check failure on line 99 in src/Models/TelegraphBot.php GitHub Actions / phpstan
|
||
{ | ||
|
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ | |
*/ | ||
class TelegraphChat extends Model implements Storable | ||
{ | ||
/** @use HasFactory<TelegraphChatFactory> */ | ||
use HasFactory; | ||
Check failure on line 40 in src/Models/TelegraphChat.php GitHub Actions / phpstan
|
||
use HasStorage; | ||
|
||
|