@@ -72,12 +72,12 @@ |
||
| 72 | 72 | { |
| 73 | 73 | static $manifest; |
| 74 | 74 | |
| 75 | - if (! $manifest) { |
|
| 75 | + if (!$manifest) { |
|
| 76 | 76 | $manifestPath = $this->webDir.'/manifest.json'; |
| 77 | 77 | |
| 78 | - if (! file_exists($manifestPath)) { |
|
| 78 | + if (!file_exists($manifestPath)) { |
|
| 79 | 79 | throw new \Exception( |
| 80 | - 'The Laravel Mix manifest file does not exist. ' . |
|
| 80 | + 'The Laravel Mix manifest file does not exist. '. |
|
| 81 | 81 | 'Please run "npm run webpack" and try again.' |
| 82 | 82 | ); |
| 83 | 83 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | - * @return array |
|
| 24 | + * @return \Twig_SimpleFunction[] |
|
| 25 | 25 | */ |
| 26 | 26 | public function getFunctions() |
| 27 | 27 | { |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | - * @param $asset |
|
| 34 | + * @param string $asset |
|
| 35 | 35 | * |
| 36 | 36 | * @throws \Exception |
| 37 | 37 | * |