Passed
Push — master ( 8bd4b7...6113e5 )
by Reza
03:27
created
src/Parsers/HTMLInputs/BaseInput.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@
 block discarded – undo
25 25
         $this->type = $type;
26 26
     }
27 27
 
28
-    public function render(){
28
+    public function render() {
29 29
         $name = $this->name;
30 30
 
31 31
         // Create an instance of input class
32 32
         // then call handle() method to get input as a steing
33
-        if(!is_array($this->type)) {
33
+        if (!is_array($this->type)) {
34 34
             $inputStringClass = static::classMap[$this->type];
35 35
             $input = (new $inputStringClass())->handle($name);
36 36
         } else {
Please login to merge, or discard this patch.