ci: add actionlint and update docs #47
integrate.yml
on: pull_request
commit-linting
14s
Matrix: code-coverage
Matrix: coding-standards
Matrix: dependency-analysis
Matrix: mutation-testing
Matrix: refactoring
Matrix: security-analysis
Matrix: static-analysis
Matrix: testing
Annotations
10 warnings
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L14
Escaped Mutant for Mutator "IfNegation":
--- Original
+++ New
@@ @@
{
public function boot(): void
{
- if ($this->app->runningInConsole()) {
+ if (!$this->app->runningInConsole()) {
$this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
$this->registerConsoleCommands();
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L15
Escaped Mutant for Mutator "ArrayItemRemoval":
--- Original
+++ New
@@ @@
public function boot(): void
{
if ($this->app->runningInConsole()) {
- $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
+ $this->publishes([], 'config');
$this->registerConsoleCommands();
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L15
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
public function boot(): void
{
if ($this->app->runningInConsole()) {
- $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
+
$this->registerConsoleCommands();
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
public function boot(): void
{
if ($this->app->runningInConsole()) {
- $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
+ $this->publishes([Config::fileName() . Config::path() => config_path(Config::fileName())], 'config');
$this->registerConsoleCommands();
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
public function boot(): void
{
if ($this->app->runningInConsole()) {
- $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
+ $this->publishes([Config::fileName() => config_path(Config::fileName())], 'config');
$this->registerConsoleCommands();
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L16
Escaped Mutant for Mutator "ArrayItem":
--- Original
+++ New
@@ @@
public function boot(): void
{
if ($this->app->runningInConsole()) {
- $this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
+ $this->publishes([Config::path() . Config::fileName() > config_path(Config::fileName())], 'config');
$this->registerConsoleCommands();
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L19
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
{
if ($this->app->runningInConsole()) {
$this->publishes([Config::path() . Config::fileName() => config_path(Config::fileName())], 'config');
- $this->registerConsoleCommands();
+
}
}
public function register(): void
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L26
Escaped Mutant for Mutator "LogicalNot":
--- Original
+++ New
@@ @@
public function register(): void
{
// @phpstan-ignore-next-line
- if (!$this->app->configurationIsCached()) {
+ if ($this->app->configurationIsCached()) {
$this->mergeConfigFrom(Config::path() . Config::fileName(), Config::key());
}
}
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L27
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
{
// @phpstan-ignore-next-line
if (!$this->app->configurationIsCached()) {
- $this->mergeConfigFrom(Config::path() . Config::fileName(), Config::key());
+
}
}
private function registerConsoleCommands(): void
|
mutation-testing (ubuntu-latest, 8.2, locked):
src/Bridge/Laravel/Providers/PackageServiceProvider.php#L36
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
}
private function registerConsoleCommands(): void
{
- $this->commands([]);
+
}
}
|