Completed
Push — master ( 0d7c19...7982dc )
by Fumio
04:23
created
sources/FileGenerator.php 1 patch
Doc Comments   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * the Constructor.
62 62
      *
63
-     * @param \Legue\Flysystem\FilesystemInterface $outbox
64
-     * @param \Legue\Flysystem\FilesystemInterface $stubbox
63
+     * @param FilesystemInterface $outbox
64
+     * @param FilesystemInterface $stubbox
65 65
      * @param \stdClass                            $context
66 66
      */
67 67
     public function __construct(FilesystemInterface $outbox, FilesystemInterface $stubbox, stdClass $context)
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
     /**
289 289
      * Create relative path in box.
290 290
      *
291
-     * @param $path
291
+     * @param string $path
292 292
      * @return string
293 293
      */
294 294
     protected function makePath($path)
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
      *
322 322
      * @param string $content
323 323
      * @param array $arguments
324
-     * @return mixed
324
+     * @return string
325 325
      */
326 326
     protected function generate($content, array $arguments)
327 327
     {
@@ -338,9 +338,8 @@  discard block
 block discarded – undo
338 338
     /**
339 339
      * Read stub file
340 340
      *
341
-     * @param string $content
342
-     * @param array $arguments
343
-     * @return mixed
341
+     * @param string $stub_path
342
+     * @return string
344 343
      */
345 344
     protected function read($stub_path)
346 345
     {
Please login to merge, or discard this patch.
sources/Php/ConfigGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      * @param array $config
11 11
      * @param string $namespace
12 12
      *
13
-     * @return static
13
+     * @return string
14 14
      */
15 15
     public static function generateText(array $config, $namespace = null)
16 16
     {
Please login to merge, or discard this patch.