deps(deps): update codecov/codecov-action action to v4.6.0 #142
Annotations
9 warnings
🧪 Run mutation testing using Xdebug and infection/infection:
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__);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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');
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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__);
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
*/
protected function commands() : void
{
- $this->load(__DIR__ . '/Console/Commands');
+
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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);
- }
- });
+
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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;
- });
+
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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;
- });
+
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
app/src/Bridge/Laravel/Providers/EventServiceProvider.php#L36
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
*/
public function shouldDiscoverEvents() : bool
{
- return false;
+ return true;
}
}
|
🧪 Run mutation testing using Xdebug and infection/infection:
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);
}
}
|
Loading