We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | public static function addFor(string $domain, $viewNamespaces) |
| 30 | 30 | { |
| 31 | 31 | foreach ((array) $viewNamespaces as $viewNamespace) { |
| 32 | - if (! in_array($viewNamespace, self::getForDomain($domain))) { |
|
| 32 | + if (!in_array($viewNamespace, self::getForDomain($domain))) { |
|
| 33 | 33 | self::$viewNamespaces[$domain][] = $viewNamespace; |
| 34 | 34 | } |
| 35 | 35 | } |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | public static function getViewPathsFor(string $domain, string $viewName) |
| 85 | 85 | { |
| 86 | - return array_map(function ($item) use ($viewName) { |
|
| 86 | + return array_map(function($item) use ($viewName) { |
|
| 87 | 87 | return $item.'.'.$viewName; |
| 88 | 88 | }, self::getFor($domain)); |
| 89 | 89 | } |