Passed
Push — master ( 15779a...f0b95b )
by Christopher
03:41
created
src/MetadataV3/Edm/OtherTypeConstructs/CollectionType.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,6 +119,6 @@
 block discarded – undo
119 119
 
120 120
     public function isAttribute(): bool
121 121
     {
122
-       return false;
122
+        return false;
123 123
     }
124 124
 }
Please login to merge, or discard this patch.
src/MetadataV3/Edm/Schema.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
  * The following is an example of the Schema element:
22 22
  *
23 23
  *     <Schema Alias="Model" Namespace="Test.Simple.Model" xmlns:edm="http://schemas.microsoft.com/ado/2009/11/edm" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
24
-
25 24
  * The following rules apply to the Schema element.
26 25
  * - The CSDL document MUST have the Schema element as its root element.
27 26
  * - The Namespace attribute is defined for each Schema element. Namespace is of type QualifiedName. A namespace is a
Please login to merge, or discard this patch.
src/MetadataV3/Edm/AssociationEnd.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,6 @@
 block discarded – undo
37 37
 {
38 38
     /**
39 39
      * End can contain a maximum of one Documentation element.
40
-
41
-
42 40
      */
43 41
     use HasDocumentation;
44 42
     /**
Please login to merge, or discard this patch.
src/MetadataV3/Edm/EntityContainer/AssociationSet/End.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
  *   by the related EntitySet. An End element can contain a maximum of one Documentation element.
31 31
  * - End can contain any number of AnnotationElement elements.
32 32
  * - The child elements of End are to appear in this sequence: Documentation, AnnotationElement.
33
-
34 33
  * @link https://www.odata.org/documentation/odata-version-3-0/common-schema-definition-language-csdl/#csdl12.3.1
35 34
  */
36 35
 class End extends EdmBase
Please login to merge, or discard this patch.
src/MetadataV3/Edm/Annotations/ValueAnnotation.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     public function getChildElements(): array
188 188
     {
189 189
         if (!(
190
-      //      $this->expression instanceof Expressions\Dynamic\TPathExpression ||
190
+        //      $this->expression instanceof Expressions\Dynamic\TPathExpression ||
191 191
             $this->expression instanceof Expressions\Constant\StringConstant ||
192 192
             $this->expression instanceof Expressions\Constant\IntConstant ||
193 193
             $this->expression instanceof Expressions\Constant\FloatConstant ||
Please login to merge, or discard this patch.
src/MetadataV3/Edm/Annotations/PropertyValue.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     public function getChildElements(): array
134 134
     {
135 135
         if (!(
136
-          //  $this->expression instanceof Expressions\Dynamic\TPathExpression ||
136
+            //  $this->expression instanceof Expressions\Dynamic\TPathExpression ||
137 137
             $this->expression instanceof Expressions\Constant\StringConstant ||
138 138
             $this->expression instanceof Expressions\Constant\IntConstant ||
139 139
             $this->expression instanceof Expressions\Constant\FloatConstant ||
Please login to merge, or discard this patch.