Skip to content

deps(deps): update dependency pestphp/pest to v2.36.0 #247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
266 changes: 133 additions & 133 deletions composer.lock

Unchanged files with check annotations Beta

{
public function boot(): void
{
if ($this->app->runningInConsole()) {

Check warning on line 13 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "IfNegation": --- Original +++ New @@ @@ { public function boot() : void { - if ($this->app->runningInConsole()) { + if (!$this->app->runningInConsole()) { $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); $this->registerConsoleCommands(); }
$this->publishes([

Check warning on line 14 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->publishes([], 'config'); $this->registerConsoleCommands(); } }

Check warning on line 14 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->registerConsoleCommands(); } }
__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php'),

Check warning on line 15 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->publishes(['/../../../../config/paginator.php' . __DIR__ => config_path('paginator.php')], 'config'); $this->registerConsoleCommands(); } }

Check warning on line 15 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->publishes(['/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); $this->registerConsoleCommands(); } }

Check warning on line 15 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->publishes([__DIR__ => config_path('paginator.php')], 'config'); $this->registerConsoleCommands(); } }

Check warning on line 15 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "ArrayItem": --- Original +++ New @@ @@ public function boot() : void { if ($this->app->runningInConsole()) { - $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); + $this->publishes([__DIR__ . '/../../../../config/paginator.php' > config_path('paginator.php')], 'config'); $this->registerConsoleCommands(); } }
], 'config');
$this->registerConsoleCommands();

Check warning on line 18 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { if ($this->app->runningInConsole()) { $this->publishes([__DIR__ . '/../../../../config/paginator.php' => config_path('paginator.php')], 'config'); - $this->registerConsoleCommands(); + } } public function register() : void
}
}
public function register(): void
{
$this->mergeConfigFrom(

Check warning on line 24 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function register() : void { - $this->mergeConfigFrom(__DIR__ . '/../../../../config/paginator.php', 'paginator'); + } private function registerConsoleCommands() : void {
__DIR__ . '/../../../../config/paginator.php',
'paginator'
);
private function registerConsoleCommands(): void
{
$this->commands([]);

Check warning on line 32 in src/Bridge/Laravel/Providers/PaginatorServiceProvider.php

GitHub Actions / mutation-testing (ubuntu-latest, 8.2, locked)

Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } private function registerConsoleCommands() : void { - $this->commands([]); + } }
}
}