Completed
Pull Request — master (#3)
by Amine
01:30
created
src/Console/ExceptionPrinter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Converts a parse exception to a string.
29 29
      *
30
-     * @param  Tarsana\Syntax\Exceptions\ParseException $e
30
+     * @param  ParseException $e
31 31
      * @return string
32 32
      */
33 33
     public function printParseException(ParseException $e) : string
Please login to merge, or discard this patch.
src/Template/TemplateLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      * or if many exists.
70 70
      *
71 71
      * @param  string $name
72
-     * @return Tarsana\Command\Interfaces\TemplateInterface
72
+     * @return TemplateInterface
73 73
      * @throws Tarsana\Command\Exceptions\TemplateNotFound
74 74
      * @throws Tarsana\Command\Exceptions\TemplateNameConflict
75 75
      */
Please login to merge, or discard this patch.
src/Command.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
      * console getter and setter.
181 181
      *
182 182
      * @param  ConsoleInterface
183
-     * @return mixed
183
+     * @return \Tarsana\Syntax\Syntax
184 184
      */
185 185
     public function console(ConsoleInterface $value = null)
186 186
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -6,11 +6,8 @@
 block discarded – undo
6 6
 use Tarsana\Command\Console\ExceptionPrinter;
7 7
 use Tarsana\Command\Interfaces\Console\ConsoleInterface;
8 8
 use Tarsana\Command\Interfaces\Template\TemplateLoaderInterface;
9
-use Tarsana\Command\SubCommand;
10 9
 use Tarsana\Command\Template\TemplateLoader;
11 10
 use Tarsana\IO\Filesystem;
12
-use Tarsana\IO\FilesystemInterface;
13
-use Tarsana\Syntax\Exceptions\ParseException;
14 11
 use Tarsana\Syntax\Factory as S;
15 12
 use Tarsana\Syntax\Text as T;
16 13
 
Please login to merge, or discard this patch.