Completed
Push — develop ( 8f34f3...3bf98d )
by Jaap
13:27 queued 03:31
created
src/Application/Bootstrap.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
      *
89 89
      * @throws \RuntimeException if no autoloader could be found.
90 90
      *
91
-     * @return ClassLoader
91
+     * @return ClassLoader|null
92 92
      */
93 93
     public function createAutoloader($vendorDir = null)
94 94
     {
Please login to merge, or discard this patch.
src/Application/Renderer/XslRenderer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     }
221 221
 
222 222
     /**
223
-     * @param $structureFilename
223
+     * @param string $structureFilename
224 224
      * @return \DOMDocument
225 225
      */
226 226
     private function loadAst($structureFilename)
@@ -261,9 +261,9 @@  discard block
 block discarded – undo
261 261
     }
262 262
 
263 263
     /**
264
-     * @param $filename
264
+     * @param string|null $filename
265 265
      * @param $proc
266
-     * @param $structure
266
+     * @param \DOMDocument $structure
267 267
      */
268 268
     private function writeToFile($filename, $proc, $structure)
269 269
     {
Please login to merge, or discard this patch.
tests/unit/Application/Renderer/Template/Action/CopyFileHandlerTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,9 +144,9 @@
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-     * @param $renderContext
148
-     * @param $source
149
-     * @param $destination
147
+     * @param RenderContext $renderContext
148
+     * @param string $source
149
+     * @param string $destination
150 150
      *
151 151
      * @return static
152 152
      */
Please login to merge, or discard this patch.