Passed
Push — master ( 15779a...f0b95b )
by Christopher
03:41
created
src/MetadataV3/DomBase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
     /**
30 30
      * @return array|AttributeContainer[]
31 31
      */
32
-    abstract public function getAttributes(): array ;
32
+    abstract public function getAttributes(): array;
33 33
 
34 34
     /**
35 35
      * @return array|DomBase[]
36 36
      */
37
-    abstract public function getChildElements(): array ;
37
+    abstract public function getChildElements(): array;
38 38
 }
Please login to merge, or discard this patch.
src/Writer/Namespaces.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      * In this specification the namespace prefix Edm is used to represent the Entity Data Model namespace, however
47 47
      * the prefix name is not prescriptive.
48 48
      */
49
-    private const V1EdmNamespace= 'http://schemas.microsoft.com/ado/2006/04/edm';
49
+    private const V1EdmNamespace = 'http://schemas.microsoft.com/ado/2006/04/edm';
50 50
     private const V2EdmNamespace = 'http://schemas.microsoft.com/ado/2008/09/edm';
51 51
     private const V3EdmNamespace = 'http://schemas.microsoft.com/ado/2009/11/edm';
52 52
     /**
Please login to merge, or discard this patch.
src/Writer/IAttribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function getAttributeValue(): ?string;
13 13
 
14
-    public function getAttributeNullCheck():bool ;
14
+    public function getAttributeNullCheck():bool;
15 15
 
16 16
     public function getAttributeForVersion(): OdataVersions;
17 17
 
Please login to merge, or discard this patch.