Test Failed
Pull Request — master (#152)
by Alex
02:46
created
src/Writer/AttributeContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
     private function strval($value):string
111 111
     {
112
-        if(is_bool($value)){
112
+        if (is_bool($value)) {
113 113
             return $value ? "true" : "false";
114 114
         }
115 115
         return strval($value);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     public function setAttributeName(string $name): AttributeContainer
134 134
     {
135 135
         $prefix = null;
136
-        if(strpos($name, ':') !== false) {
136
+        if (strpos($name, ':') !== false) {
137 137
             list($prefix, $name) = explode(":", $name);
138 138
         }
139 139
         $this->name = $name;
Please login to merge, or discard this patch.