Passed
Branch master (826f14)
by Iulian
13:42
created
Twig/MixExtension.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @return array
24
+     * @return \Twig_SimpleFunction[]
25 25
      */
26 26
     public function getFunctions()
27 27
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,12 +72,12 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.