diff --git a/Blacklight/Binaries.php b/Blacklight/Binaries.php index 76a5eccff..9bd0df9bc 100644 --- a/Blacklight/Binaries.php +++ b/Blacklight/Binaries.php @@ -39,17 +39,17 @@ class Binaries public int $messageBuffer; /** - * @var \Blacklight\ColorCLI + * @var ColorCLI */ protected mixed $colorCli; /** - * @var \Blacklight\CollectionsCleaning + * @var CollectionsCleaning */ protected mixed $_collectionsCleaning; /** - * @var \Blacklight\NNTP + * @var NNTP */ protected mixed $_nntp; @@ -315,7 +315,7 @@ class Binaries // We will use this to subtract so we leave articles for the next time (in case the server doesn't have them yet) $leaveOver = $this->messageBuffer; - // If this is not a new group, go from our newest to the servers newest. + // If this is not a new group, go from our newest to the servers newest. } else { // Set our oldest wanted to our newest local article. $first = $groupMySQL['last_record']; diff --git a/Blacklight/Books.php b/Blacklight/Books.php index 23b1983e4..4fdd68153 100755 --- a/Blacklight/Books.php +++ b/Blacklight/Books.php @@ -77,7 +77,7 @@ class Books } /** - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public function getBookInfo($id) { diff --git a/Blacklight/Console.php b/Blacklight/Console.php index 0422c9413..f7c4ab70f 100755 --- a/Blacklight/Console.php +++ b/Blacklight/Console.php @@ -8,7 +8,6 @@ use App\Models\Genre; use App\Models\Release; use App\Models\Settings; use GuzzleHttp\Exception\ClientException; -use GuzzleHttp\Exception\RequestException; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\DB; use MarcReichel\IGDBLaravel\Models\Company; @@ -81,7 +80,7 @@ class Console public $failCache; /** - * @var \Blacklight\ColorCLI + * @var ColorCLI */ protected $colorCli; @@ -617,8 +616,6 @@ class Console } /** - * @return array|bool|\StdClass - * * @throws \Exception */ public function fetchIGDBProperties($gameInfo, $gamePlatform): bool|array|\StdClass diff --git a/Blacklight/Contents.php b/Blacklight/Contents.php index 11541135a..45a8384a1 100755 --- a/Blacklight/Contents.php +++ b/Blacklight/Contents.php @@ -214,7 +214,7 @@ class Contents } /** - * @return \App\Models\Content[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection + * @return Content[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection */ public function data_get(): array|\Illuminate\Database\Eloquent\Collection|\Illuminate\Support\Collection { diff --git a/Blacklight/Genres.php b/Blacklight/Genres.php index 080b621fe..14b6c2a55 100755 --- a/Blacklight/Genres.php +++ b/Blacklight/Genres.php @@ -141,7 +141,7 @@ class Genres } /** - * @return \App\Models\Genre|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model|object|null + * @return Genre|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model|object|null */ public function getById($id) { diff --git a/Blacklight/Movie.php b/Blacklight/Movie.php index a8f49f6d2..f074c1acc 100755 --- a/Blacklight/Movie.php +++ b/Blacklight/Movie.php @@ -1241,9 +1241,9 @@ class Movie $name = $hits['name']; $year = $hits['year']; - /* If we didn't find a year, try to get a name anyways. - * Try to look for a title before the $followingList and after anything but a-z0-9 two times or more (-[ for example) - */ + /* If we didn't find a year, try to get a name anyways. + * Try to look for a title before the $followingList and after anything but a-z0-9 two times or more (-[ for example) + */ } elseif (preg_match('/([^\w]{2,})?(?P[\w .-]+?)'.$followingList.'/i', $releaseName, $hits)) { $name = $hits['name']; } diff --git a/Blacklight/Music.php b/Blacklight/Music.php index 928c9e89f..c0111bacf 100755 --- a/Blacklight/Music.php +++ b/Blacklight/Music.php @@ -70,7 +70,7 @@ class Music public $failCache; /** - * @var \Blacklight\ColorCLI + * @var ColorCLI */ protected $colorCli; diff --git a/Blacklight/NZBContents.php b/Blacklight/NZBContents.php index 7c36248de..e34a2d53c 100755 --- a/Blacklight/NZBContents.php +++ b/Blacklight/NZBContents.php @@ -16,22 +16,22 @@ use Blacklight\utility\Utility; class NZBContents { /** - * @var \Blacklight\NNTP + * @var NNTP */ protected $nntp; /** - * @var \Blacklight\Nfo + * @var Nfo */ protected $nfo; /** - * @var \Blacklight\processing\PostProcess + * @var PostProcess */ protected $pp; /** - * @var \Blacklight\NZB + * @var NZB */ protected $nzb; diff --git a/Blacklight/NZBExport.php b/Blacklight/NZBExport.php index 910796360..5e693510e 100755 --- a/Blacklight/NZBExport.php +++ b/Blacklight/NZBExport.php @@ -147,7 +147,7 @@ class NZBExport continue; } - // If not, decompress it and create a file to store it in. + // If not, decompress it and create a file to store it in. } else { $nzbContents = Utility::unzipGzipFile($nzbFile); if (! $nzbContents) { diff --git a/Blacklight/NZBImport.php b/Blacklight/NZBImport.php index 69c9af184..186288b92 100755 --- a/Blacklight/NZBImport.php +++ b/Blacklight/NZBImport.php @@ -15,12 +15,12 @@ use Illuminate\Support\Facades\File; class NZBImport { /** - * @var \Blacklight\Binaries + * @var Binaries */ protected $binaries; /** - * @var \Blacklight\ReleaseCleaning + * @var ReleaseCleaning */ protected $releaseCleaner; @@ -35,7 +35,7 @@ class NZBImport protected $crossPostt; /** - * @var \Blacklight\Categorize + * @var Categorize */ protected $category; @@ -73,7 +73,7 @@ class NZBImport public $echoCLI; /** - * @var \Blacklight\NZB + * @var NZB */ public $nzb; @@ -83,7 +83,7 @@ class NZBImport protected $nzbGuid; /** - * @var \Blacklight\ColorCLI + * @var ColorCLI */ protected $colorCli; diff --git a/Blacklight/NameFixer.php b/Blacklight/NameFixer.php index dad913447..06cf037ea 100755 --- a/Blacklight/NameFixer.php +++ b/Blacklight/NameFixer.php @@ -104,14 +104,14 @@ class NameFixer public ColorCLI $colorCLI; /** - * @var \Blacklight\Categorize + * @var Categorize */ public mixed $category; public Utility $text; /** - * @var \Blacklight\ManticoreSearch + * @var ManticoreSearch */ public mixed $manticore; @@ -553,7 +553,7 @@ class NameFixer NZB::NZB_ADDED ); $cats = 2; - // Otherwise check only releases we haven't renamed and checked uid before in Misc categories + // Otherwise check only releases we haven't renamed and checked uid before in Misc categories } else { $query = sprintf( ' @@ -616,7 +616,7 @@ class NameFixer NZB::NZB_ADDED ); $cats = 2; - // Otherwise check only releases we haven't renamed and checked uid before in Misc categories + // Otherwise check only releases we haven't renamed and checked uid before in Misc categories } else { $query = sprintf( " @@ -682,7 +682,7 @@ class NameFixer NZB::NZB_ADDED ); $cats = 2; - // Otherwise check only releases we haven't renamed and checked their par2 hash_16K before in Misc categories + // Otherwise check only releases we haven't renamed and checked their par2 hash_16K before in Misc categories } else { $query = sprintf( ' diff --git a/Blacklight/ReleaseCleaning.php b/Blacklight/ReleaseCleaning.php index 623e8277b..5a8c15b65 100755 --- a/Blacklight/ReleaseCleaning.php +++ b/Blacklight/ReleaseCleaning.php @@ -78,7 +78,7 @@ class ReleaseCleaning public $subject = ''; /** - * @var \Blacklight\Regexes + * @var Regexes */ protected $_regexes; diff --git a/Blacklight/Releases.php b/Blacklight/Releases.php index 6dc2004e0..ec14e5d0c 100644 --- a/Blacklight/Releases.php +++ b/Blacklight/Releases.php @@ -182,7 +182,7 @@ class Releases extends Release } /** - * @return \App\Models\Release[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection + * @return Release[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection */ public function getForExport(string $postFrom = '', string $postTo = '', string $groupID = '') { diff --git a/Blacklight/processing/post/AniDB.php b/Blacklight/processing/post/AniDB.php index 6804fba51..908801de7 100755 --- a/Blacklight/processing/post/AniDB.php +++ b/Blacklight/processing/post/AniDB.php @@ -23,7 +23,7 @@ class AniDB public $echooutput; /** - * @var \Blacklight\db\populate\AniDB + * @var PaDb */ public $padb; @@ -43,7 +43,7 @@ class AniDB private $status; /** - * @var \Blacklight\ColorCLI + * @var ColorCLI */ protected $colorCli; diff --git a/Blacklight/processing/tv/TV.php b/Blacklight/processing/tv/TV.php index 68451d896..11c454b68 100755 --- a/Blacklight/processing/tv/TV.php +++ b/Blacklight/processing/tv/TV.php @@ -125,7 +125,7 @@ abstract class TV extends Videos abstract protected function formatEpisodeInfo($episode): array; /** - * @return \App\Models\Release[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection|int + * @return Release[]|\Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection|\Illuminate\Database\Query\Builder[]|\Illuminate\Support\Collection|int */ public function getTvReleases(string $groupID = '', string $guidChar = '', int $lookupSetting = 1, int $status = 0): array|\Illuminate\Database\Eloquent\Collection|int|\Illuminate\Support\Collection { @@ -316,7 +316,7 @@ abstract class TV extends Videos } /** - * @return \App\Models\Video|false|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model + * @return Video|false|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model */ public function getSiteByID(string $column, int $id): \Illuminate\Database\Eloquent\Model|bool|\Illuminate\Database\Eloquent\Builder|Video { diff --git a/Blacklight/processing/tv/TVDB.php b/Blacklight/processing/tv/TVDB.php index 78edf1907..4b69aa0f8 100755 --- a/Blacklight/processing/tv/TVDB.php +++ b/Blacklight/processing/tv/TVDB.php @@ -297,9 +297,9 @@ class TVDB extends TV } /** - * @throws \CanIHaveSomeCoffee\TheTVDbAPI\Exception\ParseException - * @throws \CanIHaveSomeCoffee\TheTVDbAPI\Exception\UnauthorizedException - * @throws \Symfony\Component\Serializer\Exception\ExceptionInterface + * @throws ParseException + * @throws UnauthorizedException + * @throws ExceptionInterface */ protected function getEpisodeInfo(int|string $tvDbId, int|string $season, int|string $episode, int $videoId = 0): bool|array { diff --git a/app/Extensions/helper/helpers.php b/app/Extensions/helper/helpers.php index c83c25107..e4849500a 100644 --- a/app/Extensions/helper/helpers.php +++ b/app/Extensions/helper/helpers.php @@ -55,7 +55,7 @@ if (! function_exists('makeFieldLinks')) { /** * @return string * - * @throws \Exception + * @throws Exception */ function makeFieldLinks($data, $field, $type) { @@ -139,7 +139,7 @@ if (! function_exists('getUserBrowseOrdering')) { if (! function_exists('createGUID')) { /** - * @throws \Exception + * @throws Exception */ function createGUID(): string { @@ -268,7 +268,7 @@ if (! function_exists('is_it_json')) { } /** - * @throws \Exception + * @throws Exception */ function getStreamingZip(array $guids = []): STS\ZipStream\ZipStream { diff --git a/app/Http/Controllers/AnimeController.php b/app/Http/Controllers/AnimeController.php index fa704608b..3a6fbbf50 100644 --- a/app/Http/Controllers/AnimeController.php +++ b/app/Http/Controllers/AnimeController.php @@ -10,12 +10,12 @@ use Illuminate\Http\Request; class AnimeController extends BasePageController { /** - * @var \Blacklight\AniDB + * @var AniDB */ protected $aniDb; /** - * @var \Blacklight\Releases + * @var Releases */ protected $releases; diff --git a/app/Http/Controllers/Api/ApiController.php b/app/Http/Controllers/Api/ApiController.php index eb9040b75..f4e6325bd 100644 --- a/app/Http/Controllers/Api/ApiController.php +++ b/app/Http/Controllers/Api/ApiController.php @@ -396,7 +396,7 @@ class ApiController extends BasePageController } /** - * @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Foundation\Application|\Illuminate\Http\Response|int + * @return Application|\Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Foundation\Application|\Illuminate\Http\Response|int */ public function maxAge(Request $request) { diff --git a/app/Http/Controllers/ForumController.php b/app/Http/Controllers/ForumController.php index afe86a4d4..90991833f 100644 --- a/app/Http/Controllers/ForumController.php +++ b/app/Http/Controllers/ForumController.php @@ -11,7 +11,7 @@ use Illuminate\Support\Facades\Auth; class ForumController extends BasePageController { /** - * @return \Illuminate\Http\RedirectResponse|void + * @return RedirectResponse|void * * @throws \Exception */ diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 459861e7d..3d5a5fba9 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -103,7 +103,7 @@ class ProfileController extends BasePageController } /** - * @return \Illuminate\Http\RedirectResponse|void + * @return RedirectResponse|void * * @throws \Exception */ diff --git a/app/Http/Controllers/RssController.php b/app/Http/Controllers/RssController.php index dba95c817..1f382c81a 100644 --- a/app/Http/Controllers/RssController.php +++ b/app/Http/Controllers/RssController.php @@ -15,7 +15,7 @@ use Illuminate\Support\Carbon; class RssController extends BasePageController { /** - * @return \Illuminate\Http\JsonResponse|void + * @return JsonResponse|void * * @throws \Throwable */ @@ -40,7 +40,7 @@ class RssController extends BasePageController } /** - * @return \Illuminate\Http\JsonResponse|void + * @return JsonResponse|void * * @throws \Throwable */ @@ -61,7 +61,7 @@ class RssController extends BasePageController } /** - * @return \Illuminate\Http\JsonResponse|void + * @return JsonResponse|void * * @throws \Throwable */ diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 15781d238..cd76e8f8e 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -16,7 +16,7 @@ class Kernel extends HttpKernel protected $middleware = [ \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class, \Illuminate\Foundation\Http\Middleware\ValidatePostSize::class, - \App\Http\Middleware\TrimStrings::class, + Middleware\TrimStrings::class, \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class, \Monicahq\Cloudflare\Http\Middleware\TrustProxies::class, ]; @@ -28,12 +28,12 @@ class Kernel extends HttpKernel */ protected $middlewareGroups = [ 'web' => [ - \App\Http\Middleware\EncryptCookies::class, + Middleware\EncryptCookies::class, \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \Illuminate\Session\Middleware\StartSession::class, \Illuminate\Session\Middleware\AuthenticateSession::class, \Illuminate\View\Middleware\ShareErrorsFromSession::class, - \App\Http\Middleware\VerifyCsrfToken::class, + Middleware\VerifyCsrfToken::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, ], @@ -56,13 +56,13 @@ class Kernel extends HttpKernel 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 'can' => \Illuminate\Auth\Middleware\Authorize::class, - 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, + 'guest' => Middleware\RedirectIfAuthenticated::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'isVerified' => \Jrean\UserVerification\Middleware\IsVerified::class, 'role' => \Spatie\Permission\Middleware\RoleMiddleware::class, 'permission' => \Spatie\Permission\Middleware\PermissionMiddleware::class, 'role_or_permission' => \Spatie\Permission\Middleware\RoleOrPermissionMiddleware::class, - 'clearance' => \App\Http\Middleware\ClearanceMiddleware::class, - '2fa' => \App\Http\Middleware\Google2FAMiddleware::class, + 'clearance' => Middleware\ClearanceMiddleware::class, + '2fa' => Middleware\Google2FAMiddleware::class, ]; } diff --git a/app/Jobs/SendAccountChangedEmail.php b/app/Jobs/SendAccountChangedEmail.php index 57eccd3ce..b0659ff02 100644 --- a/app/Jobs/SendAccountChangedEmail.php +++ b/app/Jobs/SendAccountChangedEmail.php @@ -16,7 +16,7 @@ class SendAccountChangedEmail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendAccountDeletedEmail.php b/app/Jobs/SendAccountDeletedEmail.php index f8fb6f039..b70822316 100644 --- a/app/Jobs/SendAccountDeletedEmail.php +++ b/app/Jobs/SendAccountDeletedEmail.php @@ -16,7 +16,7 @@ class SendAccountDeletedEmail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendAccountExpiredEmail.php b/app/Jobs/SendAccountExpiredEmail.php index 4d0590e50..00844f498 100644 --- a/app/Jobs/SendAccountExpiredEmail.php +++ b/app/Jobs/SendAccountExpiredEmail.php @@ -16,7 +16,7 @@ class SendAccountExpiredEmail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendNewRegisteredAccountMail.php b/app/Jobs/SendNewRegisteredAccountMail.php index b1b43100b..45ac09b90 100644 --- a/app/Jobs/SendNewRegisteredAccountMail.php +++ b/app/Jobs/SendNewRegisteredAccountMail.php @@ -16,7 +16,7 @@ class SendNewRegisteredAccountMail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendPasswordForgottenEmail.php b/app/Jobs/SendPasswordForgottenEmail.php index 364bf51a8..3f89925a3 100644 --- a/app/Jobs/SendPasswordForgottenEmail.php +++ b/app/Jobs/SendPasswordForgottenEmail.php @@ -18,7 +18,7 @@ class SendPasswordForgottenEmail implements ShouldQueue private $resetLink; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendPasswordResetEmail.php b/app/Jobs/SendPasswordResetEmail.php index 29f383479..e292eee25 100644 --- a/app/Jobs/SendPasswordResetEmail.php +++ b/app/Jobs/SendPasswordResetEmail.php @@ -16,7 +16,7 @@ class SendPasswordResetEmail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Jobs/SendWelcomeEmail.php b/app/Jobs/SendWelcomeEmail.php index 09780b1f9..32364d7ef 100644 --- a/app/Jobs/SendWelcomeEmail.php +++ b/app/Jobs/SendWelcomeEmail.php @@ -16,7 +16,7 @@ class SendWelcomeEmail implements ShouldQueue use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Mail/AccountChange.php b/app/Mail/AccountChange.php index 58d5b7375..446022187 100644 --- a/app/Mail/AccountChange.php +++ b/app/Mail/AccountChange.php @@ -12,7 +12,7 @@ class AccountChange extends Mailable use Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ public $user; diff --git a/app/Mail/PasswordReset.php b/app/Mail/PasswordReset.php index 1ead120e6..5763f36d9 100644 --- a/app/Mail/PasswordReset.php +++ b/app/Mail/PasswordReset.php @@ -12,7 +12,7 @@ class PasswordReset extends Mailable use Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Mail/SendInvite.php b/app/Mail/SendInvite.php index 2ec4bd03a..e068ffb71 100644 --- a/app/Mail/SendInvite.php +++ b/app/Mail/SendInvite.php @@ -12,7 +12,7 @@ class SendInvite extends Mailable use Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ public $user; diff --git a/app/Mail/WelcomeEmail.php b/app/Mail/WelcomeEmail.php index fa4db87a1..39a2d012e 100644 --- a/app/Mail/WelcomeEmail.php +++ b/app/Mail/WelcomeEmail.php @@ -12,7 +12,7 @@ class WelcomeEmail extends Mailable use Queueable, SerializesModels; /** - * @var \App\Models\User + * @var User */ private $user; diff --git a/app/Models/AnidbEpisode.php b/app/Models/AnidbEpisode.php index e2eebbf76..c3db72a9c 100644 --- a/app/Models/AnidbEpisode.php +++ b/app/Models/AnidbEpisode.php @@ -13,7 +13,7 @@ use Illuminate\Database\Eloquent\Model; * @property string $episode_title Title of the episode (en, x-jat) * @property string $airdate * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\AnidbInfo[] $info - * @property-read \App\Models\AnidbTitle $title + * @property-read AnidbTitle $title * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\AnidbEpisode whereAirdate($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\AnidbEpisode whereAnidbid($value) diff --git a/app/Models/AnidbInfo.php b/app/Models/AnidbInfo.php index a384f0afa..d83d950cf 100644 --- a/app/Models/AnidbInfo.php +++ b/app/Models/AnidbInfo.php @@ -8,8 +8,8 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; /** * App\Models\AnidbInfo. * - * @property-read \App\Models\AnidbEpisode $episode - * @property-read \App\Models\AnidbTitle $title + * @property-read AnidbEpisode $episode + * @property-read AnidbTitle $title * * @mixin \Eloquent * diff --git a/app/Models/Category.php b/app/Models/Category.php index b5aa2bdb1..c0320ec6a 100644 --- a/app/Models/Category.php +++ b/app/Models/Category.php @@ -20,7 +20,7 @@ use Illuminate\Support\Facades\DB; * @property int $minsizetoformrelease * @property int $maxsizetoformrelease * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Category[] $children - * @property-read \App\Models\Category|null $parent + * @property-read Category|null $parent * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Release[] $releases * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Category whereDescription($value) diff --git a/app/Models/DnzbFailure.php b/app/Models/DnzbFailure.php index 29abe8666..3703a778b 100644 --- a/app/Models/DnzbFailure.php +++ b/app/Models/DnzbFailure.php @@ -10,8 +10,8 @@ use Illuminate\Database\Eloquent\Model; * @property int $release_id * @property int $users_id * @property int $failed - * @property-read \App\Models\Release $release - * @property-read \App\Models\User $user + * @property-read Release $release + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DnzbFailure whereFailed($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DnzbFailure whereReleaseId($value) diff --git a/app/Models/Forumpost.php b/app/Models/Forumpost.php index 180f5e9c7..f7572ba3e 100644 --- a/app/Models/Forumpost.php +++ b/app/Models/Forumpost.php @@ -88,7 +88,7 @@ class Forumpost extends Model * Get parent of the forum post. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getParent($parent) { @@ -122,7 +122,7 @@ class Forumpost extends Model * Get post from forum. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getPost($id) { diff --git a/app/Models/Invitation.php b/app/Models/Invitation.php index f7593696b..55f15fb5c 100644 --- a/app/Models/Invitation.php +++ b/app/Models/Invitation.php @@ -12,7 +12,7 @@ use Illuminate\Database\Eloquent\Model; * @property int $users_id * @property string|null $created_at * @property string|null $updated_at - * @property-read \App\Models\User $user + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Invitation whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Invitation whereGuid($value) @@ -58,7 +58,7 @@ class Invitation extends Model } /** - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getInvite($inviteToken) { diff --git a/app/Models/MusicInfo.php b/app/Models/MusicInfo.php index bd65805f9..2258784ee 100644 --- a/app/Models/MusicInfo.php +++ b/app/Models/MusicInfo.php @@ -23,7 +23,7 @@ use Laravel\Scout\Searchable; * @property bool $cover * @property \Carbon\Carbon|null $created_at * @property \Carbon\Carbon|null $updated_at - * @property-read \App\Models\Genre|null $genre + * @property-read Genre|null $genre * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\MusicInfo whereArtist($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\MusicInfo whereAsin($value) diff --git a/app/Models/Predb.php b/app/Models/Predb.php index 4937aa6e6..0b9c796d7 100644 --- a/app/Models/Predb.php +++ b/app/Models/Predb.php @@ -226,7 +226,7 @@ class Predb extends Model * Return a single PRE for a release. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getOne($preID) { diff --git a/app/Models/PredbHash.php b/app/Models/PredbHash.php index c62afdfeb..6e4d99970 100644 --- a/app/Models/PredbHash.php +++ b/app/Models/PredbHash.php @@ -10,7 +10,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * * @property int $predb_id id, of the predb entry, this hash belongs to * @property mixed $hash - * @property-read \App\Models\Predb $predb + * @property-read Predb $predb * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\PredbHash whereHash($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\PredbHash wherePredbId($value) diff --git a/app/Models/Release.php b/app/Models/Release.php index 5f5166125..6b81dd470 100644 --- a/app/Models/Release.php +++ b/app/Models/Release.php @@ -69,19 +69,19 @@ use Illuminate\Support\Facades\DB; * @property bool $proc_hash16k Has the release been hash16k * processed * @property mixed|null $nzb_guid - * @property-read \App\Models\Category $category + * @property-read Category $category * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ReleaseComment[] $comment * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UserDownload[] $download - * @property-read \App\Models\TvEpisode $episode + * @property-read TvEpisode $episode * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\DnzbFailure[] $failed * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ReleaseFile[] $file - * @property-read \App\Models\UsenetGroup $group - * @property-read \App\Models\ReleaseNfo $nfo - * @property-read \App\Models\Predb $predb + * @property-read UsenetGroup $group + * @property-read ReleaseNfo $nfo + * @property-read Predb $predb * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ReleaseExtraFull[] $releaseExtra * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ReleasesGroups[] $releaseGroup * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UsersRelease[] $userRelease - * @property-read \App\Models\Video $video + * @property-read Video $video * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Release whereAdddate($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Release whereAnidbid($value) @@ -321,7 +321,7 @@ class Release extends Model } /** - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getCatByRelId($id) { @@ -416,7 +416,7 @@ class Release extends Model * Used for admin page release-list. * * - * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator|mixed + * @return LengthAwarePaginator|mixed */ public static function getReleasesRange() { @@ -518,7 +518,7 @@ class Release extends Model } /** - * @return \App\Models\Release|false|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model|\Illuminate\Database\Query\Builder|object|null + * @return Release|false|\Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model|\Illuminate\Database\Query\Builder|object|null */ public static function getAlternate(string $guid, int $userid) { diff --git a/app/Models/ReleaseComment.php b/app/Models/ReleaseComment.php index 12ac67a9d..5a0d76c9f 100644 --- a/app/Models/ReleaseComment.php +++ b/app/Models/ReleaseComment.php @@ -27,8 +27,8 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property string $siteid * @property int|null $sourceid * @property mixed $nzb_guid - * @property-read \App\Models\Release $release - * @property-read \App\Models\User $user + * @property-read Release $release + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseComment whereCid($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseComment whereCreatedAt($value) @@ -81,7 +81,7 @@ class ReleaseComment extends Model * Get a comment by id. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getCommentById($id) { diff --git a/app/Models/ReleaseExtraFull.php b/app/Models/ReleaseExtraFull.php index 75c471a30..e77687fd1 100644 --- a/app/Models/ReleaseExtraFull.php +++ b/app/Models/ReleaseExtraFull.php @@ -9,7 +9,7 @@ use Illuminate\Database\Eloquent\Model; * * @property int $releases_id FK to releases.id * @property string|null $mediainfo - * @property-read \App\Models\Release $release + * @property-read Release $release * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseExtraFull whereMediainfo($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseExtraFull whereReleasesId($value) diff --git a/app/Models/ReleaseFile.php b/app/Models/ReleaseFile.php index e8c7da7ac..d5b525741 100644 --- a/app/Models/ReleaseFile.php +++ b/app/Models/ReleaseFile.php @@ -18,7 +18,7 @@ use Illuminate\Support\Facades\Log; * @property \Carbon\Carbon|null $created_at * @property \Carbon\Carbon|null $updated_at * @property bool $passworded - * @property-read \App\Models\Release $release + * @property-read Release $release * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseFile whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseFile whereIshashed($value) diff --git a/app/Models/ReleaseNfo.php b/app/Models/ReleaseNfo.php index 5ee0feab5..95ec44507 100644 --- a/app/Models/ReleaseNfo.php +++ b/app/Models/ReleaseNfo.php @@ -9,7 +9,7 @@ use Illuminate\Database\Eloquent\Model; * * @property int $releases_id FK to releases.id * @property mixed|null $nfo - * @property-read \App\Models\Release $release + * @property-read Release $release * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseNfo whereNfo($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleaseNfo whereReleasesId($value) @@ -45,7 +45,7 @@ class ReleaseNfo extends Model } /** - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getReleaseNfo($id, bool $getNfoString = true) { diff --git a/app/Models/ReleasesGroups.php b/app/Models/ReleasesGroups.php index 2c141fa47..4ece8b993 100644 --- a/app/Models/ReleasesGroups.php +++ b/app/Models/ReleasesGroups.php @@ -27,7 +27,7 @@ use Illuminate\Database\Eloquent\Model; * * @property int $releases_id FK to releases.id * @property int $groups_id FK to groups.id - * @property-read \App\Models\Release $release + * @property-read Release $release * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleasesGroups whereGroupsId($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ReleasesGroups whereReleasesId($value) diff --git a/app/Models/RoleExpirationEmail.php b/app/Models/RoleExpirationEmail.php index ab54d64a2..a3a7ce77c 100644 --- a/app/Models/RoleExpirationEmail.php +++ b/app/Models/RoleExpirationEmail.php @@ -14,7 +14,7 @@ use Illuminate\Database\Eloquent\Model; * @property int $day * @property int $week * @property int $month - * @property-read \App\Models\User $user + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\RoleExpirationEmail newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\RoleExpirationEmail newQuery() diff --git a/app/Models/TvEpisode.php b/app/Models/TvEpisode.php index 5a8a86bf2..81878a7e5 100644 --- a/app/Models/TvEpisode.php +++ b/app/Models/TvEpisode.php @@ -17,7 +17,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany; * @property string $firstaired Date of original airing/release. * @property string $summary Description/summary of the episode. * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Release[] $release - * @property-read \App\Models\Video $video + * @property-read Video $video * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\TvEpisode whereEpisode($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\TvEpisode whereFirstaired($value) diff --git a/app/Models/UsenetGroup.php b/app/Models/UsenetGroup.php index 79003efbd..4d9420157 100644 --- a/app/Models/UsenetGroup.php +++ b/app/Models/UsenetGroup.php @@ -119,7 +119,7 @@ class UsenetGroup extends Model * Get all properties of a single group by its ID. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getGroupByID($id) { @@ -170,7 +170,7 @@ class UsenetGroup extends Model * Get all group columns by Name. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getByName($grp) { diff --git a/app/Models/User.php b/app/Models/User.php index 4b55a6b49..3ace8225a 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -73,14 +73,14 @@ use Spatie\Permission\Traits\HasRoles; * @property string|null $style * @property string|null $rolechangedate When does the role expire * @property string|null $remember_token - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ReleaseComment[] $comment - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UserDownload[] $download - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\DnzbFailure[] $failedRelease - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Invitation[] $invitation + * @property-read Collection|\App\Models\ReleaseComment[] $comment + * @property-read Collection|\App\Models\UserDownload[] $download + * @property-read Collection|\App\Models\DnzbFailure[] $failedRelease + * @property-read Collection|\App\Models\Invitation[] $invitation * @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UsersRelease[] $release - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UserRequest[] $request - * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\UserSerie[] $series + * @property-read Collection|\App\Models\UsersRelease[] $release + * @property-read Collection|\App\Models\UserRequest[] $request + * @property-read Collection|\App\Models\UserSerie[] $series * * @method static Builder|\App\Models\User whereApiaccess($value) * @method static Builder|\App\Models\User whereBookview($value) @@ -132,12 +132,12 @@ use Spatie\Permission\Traits\HasRoles; * @property string|null $email_verified_at * @property int $verified * @property string|null $verification_token - * @property-read \Illuminate\Database\Eloquent\Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitationPending - * @property-read \Illuminate\Database\Eloquent\Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitationSuccess - * @property-read \Illuminate\Database\Eloquent\Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitations - * @property-read \Illuminate\Database\Eloquent\Collection|\Spatie\Permission\Models\Permission[] $permissions - * @property-read \Spatie\Permission\Models\Role $role - * @property-read \Illuminate\Database\Eloquent\Collection|\Spatie\Permission\Models\Role[] $roles + * @property-read Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitationPending + * @property-read Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitationSuccess + * @property-read Collection|\Junaidnasir\Larainvite\Models\LaraInviteModel[] $invitations + * @property-read Collection|\Spatie\Permission\Models\Permission[] $permissions + * @property-read Role $role + * @property-read Collection|\Spatie\Permission\Models\Role[] $roles * * @method static Builder|\App\Models\User newModelQuery() * @method static Builder|\App\Models\User newQuery() @@ -661,7 +661,7 @@ class User extends Authenticatable } /** - * @return \Illuminate\Database\Eloquent\Collection|\Illuminate\Support\Collection|static[] + * @return Collection|\Illuminate\Support\Collection|static[] */ public static function getTopGrabbers() { @@ -669,7 +669,7 @@ class User extends Authenticatable } /** - * @return \Illuminate\Database\Eloquent\Collection|\Illuminate\Support\Collection|static[] + * @return Collection|\Illuminate\Support\Collection|static[] */ public static function getUsersByMonth() { diff --git a/app/Models/UserDownload.php b/app/Models/UserDownload.php index 6494a2ee7..b879de1fa 100644 --- a/app/Models/UserDownload.php +++ b/app/Models/UserDownload.php @@ -13,8 +13,8 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property string $hosthash * @property string $timestamp * @property int $releases_id FK to releases.id - * @property-read \App\Models\Release $release - * @property-read \App\Models\User $user + * @property-read Release $release + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserDownload whereHosthash($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserDownload whereId($value) diff --git a/app/Models/UserRequest.php b/app/Models/UserRequest.php index 7cd2e6baf..67ae21a01 100644 --- a/app/Models/UserRequest.php +++ b/app/Models/UserRequest.php @@ -14,7 +14,7 @@ use Illuminate\Support\Facades\DB; * @property string $hosthash * @property string $request * @property string $timestamp - * @property-read \App\Models\User $user + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserRequest whereHosthash($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserRequest whereId($value) diff --git a/app/Models/UserSerie.php b/app/Models/UserSerie.php index 90daa6544..2d3a0b7d1 100644 --- a/app/Models/UserSerie.php +++ b/app/Models/UserSerie.php @@ -14,7 +14,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * @property string|null $categories List of categories for user tv shows * @property \Carbon\Carbon|null $created_at * @property \Carbon\Carbon|null $updated_at - * @property-read \App\Models\User $user + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereCategories($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereCreatedAt($value) @@ -94,7 +94,7 @@ class UserSerie extends Model * Get tv show information for a user. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getShow($userId, $videoId) { diff --git a/app/Models/UsersRelease.php b/app/Models/UsersRelease.php index b4cfe9dd1..1b96e7a38 100644 --- a/app/Models/UsersRelease.php +++ b/app/Models/UsersRelease.php @@ -12,8 +12,8 @@ use Illuminate\Database\Eloquent\Model; * @property int $releases_id FK to releases.id * @property \Carbon\Carbon|null $created_at * @property \Carbon\Carbon|null $updated_at - * @property-read \App\Models\Release $release - * @property-read \App\Models\User $user + * @property-read Release $release + * @property-read User $user * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UsersRelease whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UsersRelease whereId($value) diff --git a/app/Models/Video.php b/app/Models/Video.php index fe1855a2f..648ec343c 100644 --- a/app/Models/Video.php +++ b/app/Models/Video.php @@ -82,7 +82,7 @@ class Video extends Model * Get info from tables for the provided ID. * * - * @return \Illuminate\Database\Eloquent\Model|null|static + * @return Model|null|static */ public static function getByVideoID($id) { diff --git a/app/Models/VideoAlias.php b/app/Models/VideoAlias.php index 5eddeb9d7..a2c61c21c 100644 --- a/app/Models/VideoAlias.php +++ b/app/Models/VideoAlias.php @@ -10,7 +10,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo; * * @property int $videos_id FK to videos.id of the parent title. * @property string $title AKA of the video. - * @property-read \App\Models\Video $video + * @property-read Video $video * * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\VideoAlias whereTitle($value) * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\VideoAlias whereVideosId($value) diff --git a/composer.lock b/composer.lock index 55d39353d..f6d3d66fb 100644 --- a/composer.lock +++ b/composer.lock @@ -4076,34 +4076,34 @@ }, { "name": "laravel/pulse", - "version": "v1.0.0-beta7", + "version": "v1.0.0-beta8", "source": { "type": "git", "url": "https://github.com/laravel/pulse.git", - "reference": "1f2d6667b4a68ea4780a149677757193ed692702" + "reference": "32fb030ebf9679a30c373cada2905568d3cf818e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/pulse/zipball/1f2d6667b4a68ea4780a149677757193ed692702", - "reference": "1f2d6667b4a68ea4780a149677757193ed692702", + "url": "https://api.github.com/repos/laravel/pulse/zipball/32fb030ebf9679a30c373cada2905568d3cf818e", + "reference": "32fb030ebf9679a30c373cada2905568d3cf818e", "shasum": "" }, "require": { "doctrine/sql-formatter": "^1.1", "guzzlehttp/promises": "^1.0 || ^2.0", - "illuminate/auth": "^10.21", - "illuminate/cache": "^10.21", - "illuminate/config": "^10.21", - "illuminate/console": "^10.21", - "illuminate/contracts": "^10.21", - "illuminate/database": "^10.21", - "illuminate/events": "^10.21", - "illuminate/http": "^10.21", - "illuminate/queue": "^10.21", - "illuminate/redis": "^10.21", - "illuminate/routing": "^10.21", - "illuminate/support": "^10.21", - "illuminate/view": "^10.21", + "illuminate/auth": "^10.34", + "illuminate/cache": "^10.34", + "illuminate/config": "^10.34", + "illuminate/console": "^10.34", + "illuminate/contracts": "^10.34", + "illuminate/database": "^10.34", + "illuminate/events": "^10.34", + "illuminate/http": "^10.34", + "illuminate/queue": "^10.34", + "illuminate/redis": "^10.34", + "illuminate/routing": "^10.34", + "illuminate/support": "^10.34", + "illuminate/view": "^10.34", "livewire/livewire": "^3.2", "nesbot/carbon": "^2.67", "php": "^8.1" @@ -4158,7 +4158,7 @@ "issues": "https://github.com/laravel/pulse/issues", "source": "https://github.com/laravel/pulse" }, - "time": "2023-12-13T00:05:37+00:00" + "time": "2023-12-27T14:15:20+00:00" }, { "name": "laravel/sanctum", @@ -13239,21 +13239,21 @@ }, { "name": "symfony/service-contracts", - "version": "v3.4.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838" + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^2.0" + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -13301,7 +13301,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" }, "funding": [ { @@ -13317,7 +13317,7 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2023-12-26T14:02:43+00:00" }, { "name": "symfony/string", @@ -13502,16 +13502,16 @@ }, { "name": "symfony/translation-contracts", - "version": "v3.4.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5" + "reference": "06450585bf65e978026bda220cdebca3f867fde7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/dee0c6e5b4c07ce851b462530088e64b255ac9c5", - "reference": "dee0c6e5b4c07ce851b462530088e64b255ac9c5", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", + "reference": "06450585bf65e978026bda220cdebca3f867fde7", "shasum": "" }, "require": { @@ -13560,7 +13560,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" }, "funding": [ { @@ -13576,7 +13576,7 @@ "type": "tidelift" } ], - "time": "2023-07-25T15:08:44+00:00" + "time": "2023-12-26T14:02:43+00:00" }, { "name": "symfony/uid", @@ -15607,16 +15607,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.42.0", + "version": "v3.43.0", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "632ef1be3447a9b890bef06147475facee535d0f" + "reference": "39b5632c39ca9deb4eb7e670ba96fcf5c3a72e3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/632ef1be3447a9b890bef06147475facee535d0f", - "reference": "632ef1be3447a9b890bef06147475facee535d0f", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/39b5632c39ca9deb4eb7e670ba96fcf5c3a72e3c", + "reference": "39b5632c39ca9deb4eb7e670ba96fcf5c3a72e3c", "shasum": "" }, "require": { @@ -15646,7 +15646,7 @@ "php-cs-fixer/accessible-object": "^1.1", "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", - "phpunit/phpunit": "^9.6", + "phpunit/phpunit": "^9.6 || ^10.5.5", "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, "suggest": { @@ -15685,7 +15685,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.42.0" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.43.0" }, "funding": [ { @@ -15693,7 +15693,7 @@ "type": "github" } ], - "time": "2023-12-24T14:38:51+00:00" + "time": "2023-12-28T17:36:39+00:00" }, { "name": "hamcrest/hamcrest-php",