Completed
Branch master (7c0e72)
by Dmitry
03:59
created
src/AssetManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
         
171 171
     /**
172 172
      * Получить ссылку на asset по его имени
173
-     * @param sring $assetName название asset`а
173
+     * @param string $assetName название asset`а
174 174
      * @return string
175 175
      */
176 176
     protected function getAssetUrl($assetName)
Please login to merge, or discard this patch.
src/Command/StartServer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         throw new \RuntimeException('The HTTP server has stopped');
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $targetDirectory
41
+     */
39 42
     private function startWebServer(InputInterface $input, OutputInterface $output, $targetDirectory)
40 43
     {
41 44
         $serverWorker = $targetDirectory . 'server.php';
Please login to merge, or discard this patch.
src/Component/AssetMap.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param string$mapPath - Путь до файла с картой скомпилированных asset`ов
33
+     * @param string $mapPath
33 34
      */
34 35
     public function __construct($mapPath)
35 36
     {
Please login to merge, or discard this patch.
src/Component/Manifest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * Получить все js asset`ы которые необходимо собрать
91
-     * @return string[]
91
+     * @return string
92 92
      */
93 93
     public function getJsAssets()
94 94
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
     /**
99 99
      * Получить все css asset`ы которые необходимо собрать
100
-     * @return string[]
100
+     * @return string
101 101
      */
102 102
     public function getCssAssets()
103 103
     {
Please login to merge, or discard this patch.