Passed
Push — master ( 3492e3...5e09ea )
by Ondřej
04:41 queued 10s
created
src/Ivory/Type/TypeBase.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -46,8 +46,7 @@  discard block
 block discarded – undo
46 46
         if ($useTypeCast) {
47 47
             $plainName = (
48 48
                 $this->typeModifier === '' ?
49
-                $this->getName() :
50
-                substr($this->getName(), 0, -strlen($this->typeModifier))
49
+                $this->getName() : substr($this->getName(), 0, -strlen($this->typeModifier))
51 50
             );
52 51
             return sprintf(
53 52
                 '%s::%s.%s%s',
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
         if ($useTypeIndication) {
67 66
             $plainName = (
68 67
                 $this->typeModifier === '' ?
69
-                $this->getName() :
70
-                substr($this->getName(), 0, -strlen($this->typeModifier))
68
+                $this->getName() : substr($this->getName(), 0, -strlen($this->typeModifier))
71 69
             );
72 70
             return sprintf(
73 71
                 '%s.%s%s %s',
Please login to merge, or discard this patch.