@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | protected function bootApplication(): void |
| 30 | 30 | { |
| 31 | - if (! isset($this->laravel)) { |
|
| 31 | + if (!isset($this->laravel)) { |
|
| 32 | 32 | $this->createApplication(); |
| 33 | 33 | } |
| 34 | 34 | |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | protected function setUp(): void |
| 22 | 22 | { |
| 23 | 23 | // \LaravelZero\Framework\Testing\TestCase instead \Illuminate\Foundation\Testing\TestCase |
| 24 | - if (! $this->app) { |
|
| 24 | + if (!$this->app) { |
|
| 25 | 25 | $this->refreshApplication(); |
| 26 | 26 | } |
| 27 | 27 | |
@@ -50,14 +50,14 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | Browser::$storeSourceAt = base_path('tests/Browser/source'); |
| 52 | 52 | |
| 53 | - Browser::$userResolver = function () { |
|
| 53 | + Browser::$userResolver = function() { |
|
| 54 | 54 | return $this->user(); |
| 55 | 55 | }; |
| 56 | 56 | |
| 57 | - Browser::macro('storeSourceAsHtml', function ($name) { |
|
| 57 | + Browser::macro('storeSourceAsHtml', function($name) { |
|
| 58 | 58 | $source = $this->driver->getPageSource(); |
| 59 | 59 | |
| 60 | - if (! empty($source)) { |
|
| 60 | + if (!empty($source)) { |
|
| 61 | 61 | file_put_contents( |
| 62 | 62 | sprintf('%s/%s.html', rtrim(static::$storeSourceAt, '/'), $name), $source |
| 63 | 63 | ); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | */ |
| 107 | 107 | public static function prepare() |
| 108 | 108 | { |
| 109 | - if (! static::runningInSail()) { |
|
| 109 | + if (!static::runningInSail()) { |
|
| 110 | 110 | static::startChromeDriver(); |
| 111 | 111 | } |
| 112 | 112 | } |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | { |
| 121 | 121 | $options = (new ChromeOptions)->addArguments(collect([ |
| 122 | 122 | $this->shouldStartMaximized() ? '--start-maximized' : '--window-size=1920,1080', |
| 123 | - ])->unless($this->hasHeadlessDisabled(), function ($items) { |
|
| 123 | + ])->unless($this->hasHeadlessDisabled(), function($items) { |
|
| 124 | 124 | return $items->merge([ |
| 125 | 125 | '--disable-gpu', |
| 126 | 126 | '--headless', |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | { |
| 26 | 26 | parent::setUp(); |
| 27 | 27 | |
| 28 | - if (! static::$booted) { |
|
| 28 | + if (!static::$booted) { |
|
| 29 | 29 | $this->resetApplication(); |
| 30 | 30 | |
| 31 | 31 | static::$booted = true; |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | $path = static::path($filename); |
| 26 | 26 | |
| 27 | - if (! file_exists($path)) { |
|
| 27 | + if (!file_exists($path)) { |
|
| 28 | 28 | return $default; |
| 29 | 29 | } |
| 30 | 30 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | { |
| 37 | 37 | $path = static::path(basename($filename, '.md').'.md'); |
| 38 | 38 | |
| 39 | - if (! file_exists($path)) { |
|
| 39 | + if (!file_exists($path)) { |
|
| 40 | 40 | return $default === null ? null : Markdown::render($default); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | { |
| 49 | 49 | $path = static::path(basename($filename, '.blade.php').'.blade.php'); |
| 50 | 50 | |
| 51 | - if (! file_exists($path)) { |
|
| 51 | + if (!file_exists($path)) { |
|
| 52 | 52 | return $default === null ? null : Blade::render($default); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | protected static function needsDirectory(string $directory): void |
| 59 | 59 | { |
| 60 | - if (! file_exists($directory)) { |
|
| 60 | + if (!file_exists($directory)) { |
|
| 61 | 61 | mkdir($directory, recursive: true); |
| 62 | 62 | } |
| 63 | 63 | } |
@@ -149,7 +149,7 @@ |
||
| 149 | 149 | |
| 150 | 150 | protected function needsToBeBooted(): void |
| 151 | 151 | { |
| 152 | - if (! $this->booted) { |
|
| 152 | + if (!$this->booted) { |
|
| 153 | 153 | $this->boot(); |
| 154 | 154 | } |
| 155 | 155 | } |
@@ -73,7 +73,7 @@ |
||
| 73 | 73 | |
| 74 | 74 | public function failed(): bool |
| 75 | 75 | { |
| 76 | - return ! $this->passed; |
|
| 76 | + return !$this->passed; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | public function statusCode(): int |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | public function addExtension(string $extensionClassName): void |
| 56 | 56 | { |
| 57 | - if (! in_array($extensionClassName, $this->extensions)) { |
|
| 57 | + if (!in_array($extensionClassName, $this->extensions)) { |
|
| 58 | 58 | $this->extensions[] = $extensionClassName; |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | public function addFeature(string $feature): static |
| 158 | 158 | { |
| 159 | - if (! in_array($feature, $this->features)) { |
|
| 159 | + if (!in_array($feature, $this->features)) { |
|
| 160 | 160 | $this->features[] = $feature; |
| 161 | 161 | } |
| 162 | 162 | |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | |
| 209 | 209 | protected function determineIfTorchlightAttributionShouldBeInjected(): bool |
| 210 | 210 | { |
| 211 | - return ! $this->isDocumentationPage() |
|
| 211 | + return !$this->isDocumentationPage() |
|
| 212 | 212 | && config('torchlight.attribution.enabled', true) |
| 213 | 213 | && str_contains($this->html, 'Syntax highlighted by torchlight.dev'); |
| 214 | 214 | } |
@@ -107,7 +107,7 @@ |
||
| 107 | 107 | { |
| 108 | 108 | if (! Features::enabled(Features::torchlight())) { |
| 109 | 109 | return $result->skip('Check a Torchlight API token is set') |
| 110 | - ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); |
|
| 110 | + ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | if (config('torchlight.token') !== null) { |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | |
| 64 | 64 | public function check_documentation_site_has_an_index_page(Result $result): Result |
| 65 | 65 | { |
| 66 | - if (! Features::hasDocumentationPages()) { |
|
| 66 | + if (!Features::hasDocumentationPages()) { |
|
| 67 | 67 | return $result->skip('Does documentation site have an index page?') |
| 68 | 68 | ->withTip('Skipped because: The documentation page feature is disabled in config'); |
| 69 | 69 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | public function check_a_torchlight_api_token_is_set(Result $result): Result |
| 110 | 110 | { |
| 111 | - if (! Features::enabled(Features::torchlight())) { |
|
| 111 | + if (!Features::enabled(Features::torchlight())) { |
|
| 112 | 112 | return $result->skip('Check a Torchlight API token is set') |
| 113 | 113 | ->withTip('Torchlight is an API for code syntax highlighting. You can enable it in the Hyde config.'); |
| 114 | 114 | } |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | { |
| 59 | 59 | /** @var \Hyde\Pages\DocumentationPage $page */ |
| 60 | 60 | foreach (DocumentationPage::all() as $page) { |
| 61 | - if (! in_array($page->identifier, config('docs.exclude_from_search', []))) { |
|
| 61 | + if (!in_array($page->identifier, config('docs.exclude_from_search', []))) { |
|
| 62 | 62 | $this->searchIndex->push( |
| 63 | 63 | $this->generatePageEntry($page) |
| 64 | 64 | ); |