Completed
Push — feature/issue-41 ( d401bb...090673 )
by Mikaël
25:49
created
src/DomHandler/AbstractElementHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         if (!is_numeric($maxOccurs)) {
116 116
             return AbstractAttributeHandler::DEFAULT_OCCURENCE_VALUE;
117 117
         }
118
-        return (int) $maxOccurs;
118
+        return (int)$maxOccurs;
119 119
     }
120 120
     /**
121 121
      * Info at {@link https://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints}
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         if (!is_numeric($minOccurs)) {
128 128
             return AbstractAttributeHandler::DEFAULT_OCCURENCE_VALUE;
129 129
         }
130
-        return (int) $minOccurs;
130
+        return (int)$minOccurs;
131 131
     }
132 132
     /**
133 133
      * Info at {@link https://www.w3.org/TR/xmlschema-0/#OccurrenceConstraints}
Please login to merge, or discard this patch.