Completed
Push — master ( 8941b4...cd081a )
by Amine
02:46
created
src/Commands/HelpCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * Shows the syntax description of a part of arguments.
88 88
      *
89 89
      * @param  string $name
90
-     * @param  Tarsana\Syntax\Syntax $syntax
90
+     * @param  Syntax $syntax
91 91
      * @param  int $level
92 92
      * @return void
93 93
      */
Please login to merge, or discard this patch.
src/Command.php 1 patch
Braces   +24 added lines, -16 removed lines patch added patch discarded remove patch
@@ -108,8 +108,9 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function name($value = null)
110 110
     {
111
-        if (null === $value)
112
-            return $this->name;
111
+        if (null === $value) {
112
+                    return $this->name;
113
+        }
113 114
 
114 115
         $this->name = $value;
115 116
         return $this;
@@ -123,8 +124,9 @@  discard block
 block discarded – undo
123 124
      */
124 125
     public function description($value = null)
125 126
     {
126
-        if (null === $value)
127
-            return $this->description;
127
+        if (null === $value) {
128
+                    return $this->description;
129
+        }
128 130
 
129 131
         $this->description = $value;
130 132
         return $this;
@@ -138,8 +140,9 @@  discard block
 block discarded – undo
138 140
      */
139 141
     public function version($value = null)
140 142
     {
141
-        if (null === $value)
142
-            return $this->version;
143
+        if (null === $value) {
144
+                    return $this->version;
145
+        }
143 146
 
144 147
         $this->version = $value;
145 148
         return $this;
@@ -153,8 +156,9 @@  discard block
 block discarded – undo
153 156
      */
154 157
     public function console($value = null)
155 158
     {
156
-        if (null === $value)
157
-            return $this->console;
159
+        if (null === $value) {
160
+                    return $this->console;
161
+        }
158 162
 
159 163
         $this->console = $value;
160 164
         return $this;
@@ -169,8 +173,9 @@  discard block
 block discarded – undo
169 173
      */
170 174
     public function syntax($value = null)
171 175
     {
172
-        if (null === $value)
173
-            return $this->syntaxBuilder->get();
176
+        if (null === $value) {
177
+                    return $this->syntaxBuilder->get();
178
+        }
174 179
 
175 180
         $this->syntaxBuilder = SyntaxBuilder::of($value);
176 181
 
@@ -218,8 +223,9 @@  discard block
 block discarded – undo
218 223
     public function command($name, Command $cmd = null)
219 224
     {
220 225
         if (null === $cmd) {
221
-            if (!$this->hasCommand($name))
222
-                throw new CommandNotFound("Command '{$this->name}' has no subcommand '{$name}'");
226
+            if (!$this->hasCommand($name)) {
227
+                            throw new CommandNotFound("Command '{$this->name}' has no subcommand '{$name}'");
228
+            }
223 229
             return $this->subCommands[$name];
224 230
         }
225 231
 
@@ -245,8 +251,9 @@  discard block
 block discarded – undo
245 251
      */
246 252
     public function args($value = null)
247 253
     {
248
-        if (null === $value)
249
-            return $this->args;
254
+        if (null === $value) {
255
+                    return $this->args;
256
+        }
250 257
 
251 258
         $this->args = $value;
252 259
         return $this;
@@ -346,8 +353,9 @@  discard block
 block discarded – undo
346 353
      */
347 354
     protected function template($name)
348 355
     {
349
-        if (null === $this->templateLoader)
350
-            throw new NullPropertyAccess("The templatesLoader is not initialized; Please set it before trying to load a template !");
356
+        if (null === $this->templateLoader) {
357
+                    throw new NullPropertyAccess("The templatesLoader is not initialized; Please set it before trying to load a template !");
358
+        }
351 359
 
352 360
         return $this->templateLoader->load($name);
353 361
     }
Please login to merge, or discard this patch.