Skip to content

deps(deps): update dependency laravel/framework to v11.14.0 #99

deps(deps): update dependency laravel/framework to v11.14.0

deps(deps): update dependency laravel/framework to v11.14.0 #99

Triggered via pull request July 2, 2024 19:18
Status Success
Total duration 59s
Artifacts

testing.yml

on: pull_request
Matrix: arch-testing
Matrix: code-coverage
Matrix: mutation-testing
Fit to window
Zoom out
Zoom in

Annotations

9 warnings
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load('/Console/Commands' . __DIR__); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load('/Console/Commands'); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load(__DIR__); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Exceptions/Handler.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ public function register() : void { - $this->reportable(function (Throwable $e) : void { - if (app()->bound('sentry')) { - app('sentry')->captureException($e); - } - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/Domain/ProductServiceProvider.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ private function bindProductEntity() : void { - Route::bind('product', static function ($value) { - /** @var Product|null $category */ - $category = Product::where('uuid', $value)->first(); - if ($category === null) { - throw new ProductNotFoundException(); - } - return $category; - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/Domain/UserServiceProvider.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ private function bindUserEntity() : void { - Route::bind('user', static function ($value) { - /** @var User|null $category */ - // phpstan-ignore-next-line - $category = User::where('uuid', $value)->first(); - if ($category === null) { - throw new UserNotFoundException(); - } - return $category; - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/EventServiceProvider.php#L36
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ */ public function shouldDiscoverEvents() : bool { - return false; + return true; } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Support/StringUtils.php#L17
Escaped Mutant for Mutator "UnwrapStrToLower": --- Original +++ New @@ @@ { public static function toTitleCase(string $str) : string { - return ucwords(strtolower($str)); + return ucwords($str); } }