@@ -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', |