@@ -42,7 +42,7 @@ |
||
42 | 42 | foreach (array_reverse($meta) as $metaItem) { |
43 | 43 | $substring = substr($metaItem, 6, strpos($metaItem, ' content="') - 6); |
44 | 44 | |
45 | - if (! in_array($substring, $existing)) { |
|
45 | + if (!in_array($substring, $existing)) { |
|
46 | 46 | $array[] = $metaItem; |
47 | 47 | $existing[] = $substring; |
48 | 48 | } |
@@ -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 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | echo "Short version: $shortVersion\n"; |
23 | 23 | $composerJson = json_decode(file_get_contents(__DIR__.'./../../packages/hyde/composer.json'), true); |
24 | 24 | $composerJson['require']['hyde/framework'] = "^0.$shortVersion"; |
25 | -file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)); |
|
25 | +file_put_contents(__DIR__.'./../../packages/hyde/composer.json', json_encode($composerJson, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES)); |
|
26 | 26 | |
27 | 27 | echo "Transforming upcoming release notes... \n"; |
28 | 28 |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | 'file-viewer' => 'File Viewer', |
72 | 72 | ]; |
73 | 73 | |
74 | - if (! isset($routes[$page])) { |
|
74 | + if (!isset($routes[$page])) { |
|
75 | 75 | header('HTTP/1.1 404 Not Found'); |
76 | 76 | $page = '404'; |
77 | 77 | } |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $class = $this->type; |
368 | 368 | $filename = $this->filename; |
369 | 369 | $filepath = $class::$sourceDirectory.'/'.$filename.$class::$fileExtension; |
370 | - if (! file_exists(Hyde::path($filepath))) { |
|
370 | + if (!file_exists(Hyde::path($filepath))) { |
|
371 | 371 | throw new FileNotFoundException($filepath); |
372 | 372 | } |
373 | 373 |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | <?php |
278 | 278 | $documentation = DiscoveryService::getDocumentationPageList(); |
279 | 279 | $posts = DiscoveryService::getMarkdownPostList(); |
280 | - ?> |
|
280 | + ?> |
|
281 | 281 | <h3 class="h5">Your Pages</h3> |
282 | 282 | <table class="table"> |
283 | 283 | <thead class="table-secondary"> |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | return file_get_contents($this->filepath); |
380 | 380 | } |
381 | 381 | }; |
382 | - ?> |
|
382 | + ?> |
|
383 | 383 | |
384 | 384 | <section class="col-12 col-xl-10 col-xxl-8"> |
385 | 385 | <h3 class="h6 my-3">Showing file <code><?= e($editor->contentpath) ?></code></h3> |
@@ -456,10 +456,10 @@ discard block |
||
456 | 456 | |
457 | 457 | <?php |
458 | 458 | } catch (\Throwable $th) { |
459 | - echo '<h1>Error</h1>'; |
|
460 | - echo '<p>An error occurred while processing your request.</p>'; |
|
461 | - echo '<pre><code>'.$th->getMessage().'</code></pre>'; |
|
462 | - echo '<p>Extra information:</p>'; |
|
463 | - echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>'; |
|
464 | - exit($th->getCode()); |
|
465 | - } |
|
459 | + echo '<h1>Error</h1>'; |
|
460 | + echo '<p>An error occurred while processing your request.</p>'; |
|
461 | + echo '<pre><code>'.$th->getMessage().'</code></pre>'; |
|
462 | + echo '<p>Extra information:</p>'; |
|
463 | + echo '<pre><code>'.$th->getTraceAsString().print_r($th, true).'</code></pre>'; |
|
464 | + exit($th->getCode()); |
|
465 | + } |
@@ -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', |
@@ -177,7 +177,7 @@ |
||
177 | 177 | */ |
178 | 178 | public function hasSiteUrl(): bool |
179 | 179 | { |
180 | - return ! blank(config('site.url')); |
|
180 | + return !blank(config('site.url')); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | public function __construct() |
22 | 22 | { |
23 | - if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
23 | + if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
24 | 24 | throw new \Exception('The ext-simplexml extension is not installed, but is required to generate RSS feeds.'); |
25 | 25 | } |
26 | 26 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | protected static function xmlEscape(string $string): string |
107 | 107 | { |
108 | - return htmlspecialchars($string, ENT_XML1 | ENT_COMPAT, 'UTF-8'); |
|
108 | + return htmlspecialchars($string, ENT_XML1|ENT_COMPAT, 'UTF-8'); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | public static function getDescription(): string |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function __construct() |
27 | 27 | { |
28 | - if (! extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
28 | + if (!extension_loaded('simplexml') || config('testing.mock_disabled_extensions', false) === true) { |
|
29 | 29 | throw new \Exception('The ext-simplexml extension is not installed, but is required to generate RSS feeds.'); |
30 | 30 | } |
31 | 31 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function generate(): static |
39 | 39 | { |
40 | - Route::all()->each(function ($route) { |
|
40 | + Route::all()->each(function($route) { |
|
41 | 41 | $this->addRoute($route); |
42 | 42 | }); |
43 | 43 |
@@ -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; |