@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | public function macro(): Closure |
| 19 | 19 | { |
| 20 | - return function (string $path, string $content, int $position = 0, array $options = []) { |
|
| 20 | + return function(string $path, string $content, int $position = 0, array $options = []) { |
|
| 21 | 21 | try { |
| 22 | 22 | /** |
| 23 | 23 | * @var FilesystemAdapter $this |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | |
| 18 | 18 | public function macro(): Closure |
| 19 | 19 | { |
| 20 | - return function (string $path, string $content, int $position = 0, array $options = []) { |
|
| 20 | + return function(string $path, string $content, int $position = 0, array $options = []) { |
|
| 21 | 21 | try { |
| 22 | 22 | /** |
| 23 | 23 | * @var FilesystemAdapter $this |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | public function getDomain() |
| 16 | 16 | { |
| 17 | 17 | if ($this->get('domain')) { |
| 18 | - return $this->getProtocol() . '://' . $this->get('domain'); |
|
| 18 | + return $this->getProtocol().'://'.$this->get('domain'); |
|
| 19 | 19 | } |
| 20 | 20 | return $this->getEndpointDomain(); |
| 21 | 21 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | protected function getEndpointDomain() |
| 27 | 27 | { |
| 28 | - return $this->getProtocol() . '://' . $this->get('bucket') . '.' . $this->get('endpoint'); |
|
| 28 | + return $this->getProtocol().'://'.$this->get('bucket').'.'.$this->get('endpoint'); |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | /** |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | protected function getInternalDomain() |
| 35 | 35 | { |
| 36 | - return $this->getProtocol() . '://' . $this->get('bucket') . '.' . $this->get('internal'); |
|
| 36 | + return $this->getProtocol().'://'.$this->get('bucket').'.'.$this->get('internal'); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |