We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -87,12 +87,12 @@ |
||
| 87 | 87 | |
| 88 | 88 | $section = $this->context()->composerRequirementSection('backpack/crud') ?? 'require'; |
| 89 | 89 | |
| 90 | - $updated = $this->context()->updateComposerJson(function (array &$composer) use ($section, $targetConstraint) { |
|
| 90 | + $updated = $this->context()->updateComposerJson(function(array &$composer) use ($section, $targetConstraint) { |
|
| 91 | 91 | $composer[$section] = $composer[$section] ?? []; |
| 92 | 92 | $composer[$section]['backpack/crud'] = $targetConstraint; |
| 93 | 93 | }); |
| 94 | 94 | |
| 95 | - if (! $updated) { |
|
| 95 | + if (!$updated) { |
|
| 96 | 96 | return StepResult::failure('Could not update composer.json automatically.'); |
| 97 | 97 | } |
| 98 | 98 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $fullPath = $this->basePath($relativePath); |
| 75 | 75 | |
| 76 | - if (! $this->files->exists($fullPath)) { |
|
| 76 | + if (!$this->files->exists($fullPath)) { |
|
| 77 | 77 | return null; |
| 78 | 78 | } |
| 79 | 79 | |
@@ -86,13 +86,13 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | public function composerJson(): array |
| 88 | 88 | { |
| 89 | - if (! empty($this->composerJson)) { |
|
| 89 | + if (!empty($this->composerJson)) { |
|
| 90 | 90 | return $this->composerJson; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | $content = $this->readFile('composer.json'); |
| 94 | 94 | |
| 95 | - if (! $content) { |
|
| 95 | + if (!$content) { |
|
| 96 | 96 | return $this->composerJson = []; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | |
| 136 | 136 | public function installedPackageVersion(string $package): ?string |
| 137 | 137 | { |
| 138 | - if (! InstalledVersions::isInstalled($package)) { |
|
| 138 | + if (!InstalledVersions::isInstalled($package)) { |
|
| 139 | 139 | return null; |
| 140 | 140 | } |
| 141 | 141 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | public function installedPackagePrettyVersion(string $package): ?string |
| 146 | 146 | { |
| 147 | - if (! InstalledVersions::isInstalled($package)) { |
|
| 147 | + if (!InstalledVersions::isInstalled($package)) { |
|
| 148 | 148 | return null; |
| 149 | 149 | } |
| 150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | { |
| 156 | 156 | $pretty = $this->installedPackagePrettyVersion($package); |
| 157 | 157 | |
| 158 | - if (! $pretty) { |
|
| 158 | + if (!$pretty) { |
|
| 159 | 159 | return null; |
| 160 | 160 | } |
| 161 | 161 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | foreach ($directories as $directory) { |
| 184 | 184 | $absoluteDirectory = $this->resolvePath($directory); |
| 185 | 185 | |
| 186 | - if (! $this->files->isDirectory($absoluteDirectory)) { |
|
| 186 | + if (!$this->files->isDirectory($absoluteDirectory)) { |
|
| 187 | 187 | continue; |
| 188 | 188 | } |
| 189 | 189 | |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | $fullPath = $this->basePath($relativePath); |
| 249 | 249 | |
| 250 | 250 | try { |
| 251 | - if (! $this->files->exists($fullPath)) { |
|
| 251 | + if (!$this->files->exists($fullPath)) { |
|
| 252 | 252 | return true; |
| 253 | 253 | } |
| 254 | 254 | |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | { |
| 311 | 311 | $extension = strtolower(pathinfo($filename, PATHINFO_EXTENSION)); |
| 312 | 312 | |
| 313 | - if (! in_array($extension, $this->searchableExtensions, true)) { |
|
| 313 | + if (!in_array($extension, $this->searchableExtensions, true)) { |
|
| 314 | 314 | return true; |
| 315 | 315 | } |
| 316 | 316 | |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | public function run(): StepResult |
| 19 | 19 | { |
| 20 | - if (! $this->context()->fileExists($this->relativePath)) { |
|
| 20 | + if (!$this->context()->fileExists($this->relativePath)) { |
|
| 21 | 21 | return StepResult::success('Show operation view is not published, package default will be used.'); |
| 22 | 22 | } |
| 23 | 23 | |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | public function fix(StepResult $result): StepResult |
| 41 | 41 | { |
| 42 | - if (! $this->context()->fileExists($this->relativePath)) { |
|
| 42 | + if (!$this->context()->fileExists($this->relativePath)) { |
|
| 43 | 43 | return StepResult::skipped('Published show.blade.php was already removed.'); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if (! $this->context()->deleteFile($this->relativePath)) { |
|
| 46 | + if (!$this->context()->deleteFile($this->relativePath)) { |
|
| 47 | 47 | return StepResult::failure("Could not delete {$this->relativePath} automatically."); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | public function run(): StepResult |
| 19 | 19 | { |
| 20 | - if (! $this->context()->fileExists($this->relativePath)) { |
|
| 20 | + if (!$this->context()->fileExists($this->relativePath)) { |
|
| 21 | 21 | return StepResult::success('List operation view is not published, package default will be used.'); |
| 22 | 22 | } |
| 23 | 23 | |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | public function fix(StepResult $result): StepResult |
| 41 | 41 | { |
| 42 | - if (! $this->context()->fileExists($this->relativePath)) { |
|
| 42 | + if (!$this->context()->fileExists($this->relativePath)) { |
|
| 43 | 43 | return StepResult::skipped('Published list.blade.php was already removed.'); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - if (! $this->context()->deleteFile($this->relativePath)) { |
|
| 46 | + if (!$this->context()->deleteFile($this->relativePath)) { |
|
| 47 | 47 | return StepResult::failure("Could not delete {$this->relativePath} automatically."); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -41,11 +41,11 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | public function canFix(StepResult $result): bool |
| 43 | 43 | { |
| 44 | - if (! $result->status->isWarning()) { |
|
| 44 | + if (!$result->status->isWarning()) { |
|
| 45 | 45 | return false; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - return ! empty($this->crudControllerPaths()); |
|
| 48 | + return !empty($this->crudControllerPaths()); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | public function fixMessage(StepResult $result): string |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | continue; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if (! $this->context()->writeFile($path, $updatedContents)) { |
|
| 80 | + if (!$this->context()->writeFile($path, $updatedContents)) { |
|
| 81 | 81 | return StepResult::failure("Could not update {$path} automatically."); |
| 82 | 82 | } |
| 83 | 83 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | foreach ($patterns as $pattern => $replacement) { |
| 109 | 109 | $contents = preg_replace_callback( |
| 110 | 110 | $pattern, |
| 111 | - function (array $matches) use (&$replacementCount, $replacement) { |
|
| 111 | + function(array $matches) use (&$replacementCount, $replacement) { |
|
| 112 | 112 | $replacementCount++; |
| 113 | 113 | |
| 114 | 114 | return $replacement($matches); |
@@ -134,19 +134,19 @@ discard block |
||
| 134 | 134 | private function wysiwygPatterns(): array |
| 135 | 135 | { |
| 136 | 136 | return [ |
| 137 | - '~->type\((["\'])wysiwyg\1\)~' => function (array $matches) { |
|
| 137 | + '~->type\((["\'])wysiwyg\1\)~' => function(array $matches) { |
|
| 138 | 138 | return '->type('.$matches[1].'ckeditor'.$matches[1].')'; |
| 139 | 139 | }, |
| 140 | - '~(["\']type["\']\s*=>\s*)(["\'])wysiwyg\2~' => function (array $matches) { |
|
| 140 | + '~(["\']type["\']\s*=>\s*)(["\'])wysiwyg\2~' => function(array $matches) { |
|
| 141 | 141 | return $matches[1].$matches[2].'ckeditor'.$matches[2]; |
| 142 | 142 | }, |
| 143 | - '~(CRUD::(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function (array $matches) { |
|
| 143 | + '~(CRUD::(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function(array $matches) { |
|
| 144 | 144 | return $matches[1].$matches[2].'ckeditor'.$matches[2]; |
| 145 | 145 | }, |
| 146 | - '~($this->crud->(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function (array $matches) { |
|
| 146 | + '~($this->crud->(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function(array $matches) { |
|
| 147 | 147 | return $matches[1].$matches[2].'ckeditor'.$matches[2]; |
| 148 | 148 | }, |
| 149 | - '~($crud->(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function (array $matches) { |
|
| 149 | + '~($crud->(?:addField|field|addColumn|column)\(\s*)(["\'])wysiwyg\2~' => function(array $matches) { |
|
| 150 | 150 | return $matches[1].$matches[2].'ckeditor'.$matches[2]; |
| 151 | 151 | }, |
| 152 | 152 | ]; |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | continue; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - if (! $this->matchesExpectedConstraint($constraint, $expectedConstraint)) { |
|
| 29 | + if (!$this->matchesExpectedConstraint($constraint, $expectedConstraint)) { |
|
| 30 | 30 | $this->mismatched[] = [ |
| 31 | 31 | 'package' => $package, |
| 32 | 32 | 'current' => $constraint, |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | public function canFix(StepResult $result): bool |
| 80 | 80 | { |
| 81 | - return $result->status === StepStatus::Warning && ! empty($this->mismatched); |
|
| 81 | + return $result->status === StepStatus::Warning && !empty($this->mismatched); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | public function fixMessage(StepResult $result): string |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | $mismatched = $this->mismatched; |
| 96 | 96 | |
| 97 | - $updated = $this->context()->updateComposerJson(function (array &$composer) use ($mismatched) { |
|
| 97 | + $updated = $this->context()->updateComposerJson(function(array &$composer) use ($mismatched) { |
|
| 98 | 98 | foreach ($mismatched as $item) { |
| 99 | 99 | $section = $item['section'] ?? 'require'; |
| 100 | 100 | $composer[$section] = $composer[$section] ?? []; |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | } |
| 103 | 103 | }); |
| 104 | 104 | |
| 105 | - if (! $updated) { |
|
| 105 | + if (!$updated) { |
|
| 106 | 106 | return StepResult::failure('Could not update composer.json automatically.'); |
| 107 | 107 | } |
| 108 | 108 | |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | $filtered = []; |
| 22 | 22 | |
| 23 | 23 | foreach ($paths as $path) { |
| 24 | - if (! $this->isCrudControllerPath($path)) { |
|
| 24 | + if (!$this->isCrudControllerPath($path)) { |
|
| 25 | 25 | continue; |
| 26 | 26 | } |
| 27 | 27 | |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | |
| 61 | 61 | public function upgradeCommandDescription(): ?callable |
| 62 | 62 | { |
| 63 | - return function (UpgradeCommand $command): void { |
|
| 63 | + return function(UpgradeCommand $command): void { |
|
| 64 | 64 | $command->note( |
| 65 | 65 | 'Before you start, make sure you have a fresh <fg=red>FULL BACKUP</> of your project and database stored safely.', |
| 66 | 66 | 'yellow', |
@@ -78,13 +78,13 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $detailLines = []; |
| 80 | 80 | |
| 81 | - if (! empty($this->missingPackages)) { |
|
| 81 | + if (!empty($this->missingPackages)) { |
|
| 82 | 82 | foreach ($this->missingPackages as $package => $data) { |
| 83 | 83 | $detailLines[] = sprintf('- %s (%s field/column usage detected)', $package, $data['keyword']); |
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if (! empty($this->uninstalledPackages) && empty($this->missingPackages)) { |
|
| 87 | + if (!empty($this->uninstalledPackages) && empty($this->missingPackages)) { |
|
| 88 | 88 | foreach ($this->uninstalledPackages as $package => $data) { |
| 89 | 89 | $detailLines[] = sprintf('- %s (%s field/column usage detected)', $package, $data['keyword']); |
| 90 | 90 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | 'uninstalled_packages' => array_keys($this->uninstalledPackages), |
| 96 | 96 | ]; |
| 97 | 97 | |
| 98 | - if (! empty($this->missingPackages)) { |
|
| 98 | + if (!empty($this->missingPackages)) { |
|
| 99 | 99 | return StepResult::failure( |
| 100 | 100 | 'There are missing editor packages required by your CrudControllers.', |
| 101 | 101 | $detailLines, |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | public function canFix(StepResult $result): bool |
| 114 | 114 | { |
| 115 | - return $result->status === StepStatus::Failed && ! empty($this->missingPackages); |
|
| 115 | + return $result->status === StepStatus::Failed && !empty($this->missingPackages); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | public function fixMessage(StepResult $result): string |
@@ -128,19 +128,19 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $missingPackages = $this->missingPackages; |
| 130 | 130 | |
| 131 | - $updated = $this->context()->updateComposerJson(function (array &$composer) use ($missingPackages) { |
|
| 131 | + $updated = $this->context()->updateComposerJson(function(array &$composer) use ($missingPackages) { |
|
| 132 | 132 | $composer['require'] = $composer['require'] ?? []; |
| 133 | 133 | |
| 134 | 134 | foreach ($missingPackages as $package => $data) { |
| 135 | 135 | $constraint = $data['constraint'] ?? 'dev-next'; |
| 136 | 136 | |
| 137 | - if (! array_key_exists($package, $composer['require'])) { |
|
| 137 | + if (!array_key_exists($package, $composer['require'])) { |
|
| 138 | 138 | $composer['require'][$package] = $constraint; |
| 139 | 139 | } |
| 140 | 140 | } |
| 141 | 141 | }); |
| 142 | 142 | |
| 143 | - if (! $updated) { |
|
| 143 | + if (!$updated) { |
|
| 144 | 144 | return StepResult::failure('Could not update composer.json automatically.'); |
| 145 | 145 | } |
| 146 | 146 | |