Passed
Push — master ( 2db009...afaf75 )
by Oleg
04:58
created
base/Injector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @param $name
43
-     * @return mixed|null
42
+     * @param string $name
43
+     * @return string
44 44
      */
45 45
     public function param($name)
46 46
     {
Please login to merge, or discard this patch.
web/Asset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
         $this->hash = md5($this->sourcePath);
69 69
 
70
-        $this->publishPath = '/' . (($dir = (new Injector)->param('assetsDirName')) ? $dir : 'assets') . '/' . $this->hash;
70
+        $this->publishPath = '/'.(($dir = (new Injector)->param('assetsDirName')) ? $dir : 'assets').'/'.$this->hash;
71 71
 
72 72
         $web = (new KernelInjector)->get()->getWebDir();
73 73
 
Please login to merge, or discard this patch.