Passed
Pull Request — master (#156)
by Alex
03:19
created
StructuralPropertyInvalidPropertyTypeConcurrencyMode.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,7 @@
 block discarded – undo
43 43
                 StringConst::EdmModel_Validator_Semantic_InvalidPropertyTypeConcurrencyMode(
44 44
                     (
45 45
                         $propType->IsCollection() ?
46
-                        EdmConstants::Type_Collection :
47
-                        $key
46
+                        EdmConstants::Type_Collection : $key
48 47
                     )
49 48
                 )
50 49
             );
Please login to merge, or discard this patch.
IStructuralProperty/StructuralPropertyInvalidPropertyType.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
         assert($property instanceof IStructuralProperty);
25 25
         if ($property->getDeclaringType()->getTypeKind()->isRow()) {
26 26
             $validatedType = $property->getType()->IsCollection() ?
27
-                $property->getType()->AsCollection()->ElementType()->getDefinition() :
28
-                $property->getType()->getDefinition();
27
+                $property->getType()->AsCollection()->ElementType()->getDefinition() : $property->getType()->getDefinition();
29 28
 
30 29
             EdmUtil::checkArgumentNull($validatedType, 'validatedType');
31 30
             if (!$validatedType->getTypeKind()->isPrimitive() &&
Please login to merge, or discard this patch.
IDirectValueAnnotation/DirectValueAnnotationHasXmlSerializableName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             // Note: this check can be done without the try/catch block, but we need XmlConvert.IsStartNCNameChar and
37 37
             // XmlConvert.IsNCNameChar, which are not available in 3.5.
38 38
             if (!XmlConvert::VerifyNCName($annotation->getName())) {
39
-                $value         = $annotation->getValue() ;
39
+                $value         = $annotation->getValue();
40 40
                 $errorLocation = ($value === null || !($value instanceof IValue)) ? null : $value->Location();
41 41
                 $error         = new EdmError(
42 42
                     $errorLocation,
Please login to merge, or discard this patch.
src/Edm/Validation/Internal/InterfaceValidator/VisitorOfISchemaElement.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     public function __construct()
21 21
     {
22 22
         $this->lookup[SchemaElementKind::TypeDefinition()->getKey()] = ISchemaType::class;
23
-        $this->lookup[SchemaElementKind::Function()->getKey()] = IFunction::class;
23
+        $this->lookup[SchemaElementKind::Function ()->getKey()] = IFunction::class;
24 24
         $this->lookup[SchemaElementKind::ValueTerm()->getKey()] = IValueTerm::class;
25 25
         $this->lookup[SchemaElementKind::EntityContainer()->getKey()] = IEntityContainer::class;
26 26
     }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     public function __construct()
21 21
     {
22 22
         $this->lookup[SchemaElementKind::TypeDefinition()->getKey()] = ISchemaType::class;
23
-        $this->lookup[SchemaElementKind::Function()->getKey()] = IFunction::class;
23
+        $this->lookup[SchemaElementKind::function()->getKey()] = IFunction::class;
24 24
         $this->lookup[SchemaElementKind::ValueTerm()->getKey()] = IValueTerm::class;
25 25
         $this->lookup[SchemaElementKind::EntityContainer()->getKey()] = IEntityContainer::class;
26 26
     }
Please login to merge, or discard this patch.
src/Library/Expressions/EdmApplyExpression.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function __construct($appliedFunction, IExpression ...$arguments)
36 36
     {
37 37
         assert($appliedFunction instanceof IFunction || $appliedFunction instanceof IExpression);
38
-        if($appliedFunction instanceof IFunction){
38
+        if ($appliedFunction instanceof IFunction) {
39 39
             $appliedFunction = new EdmFunctionReferenceExpression(EdmUtil::CheckArgumentNull($appliedFunction, "appliedFunction"));
40 40
         }
41 41
         assert($appliedFunction instanceof IExpression);
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function __construct($appliedFunction, IExpression ...$arguments)
36 36
     {
37 37
         assert($appliedFunction instanceof IFunction || $appliedFunction instanceof IExpression);
38
-        if($appliedFunction instanceof IFunction){
38
+        if($appliedFunction instanceof IFunction) {
39 39
             $appliedFunction = new EdmFunctionReferenceExpression(EdmUtil::CheckArgumentNull($appliedFunction, "appliedFunction"));
40 40
         }
41 41
         assert($appliedFunction instanceof IExpression);
Please login to merge, or discard this patch.
src/Library/Expressions/EdmIfExpression.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function getExpressionKind(): ExpressionKind
49 49
     {
50
-        return ExpressionKind::If();
50
+        return ExpressionKind::If ();
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function getExpressionKind(): ExpressionKind
49 49
     {
50
-        return ExpressionKind::If();
50
+        return ExpressionKind::if();
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.
src/Library/Expressions/EdmNullExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getValueKind(): ValueKind
32 32
     {
33
-        return ValueKind::Null();
33
+        return ValueKind::null();
34 34
     }
35 35
 
36 36
     /**
@@ -38,6 +38,6 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function getExpressionKind(): ExpressionKind
40 40
     {
41
-        return ExpressionKind::Null();
41
+        return ExpressionKind::null();
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
src/Library/Expressions/EdmPathExpression.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function __construct(string ...$path)
28 28
     {
29
-        if(count($path) === 1){
29
+        if (count($path) === 1) {
30 30
             $path = explode('/', $path[]);
31 31
         }
32 32
         $this->path = $path;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function __construct(string ...$path)
28 28
     {
29
-        if(count($path) === 1){
29
+        if(count($path) === 1) {
30 30
             $path = explode('/', $path[]);
31 31
         }
32 32
         $this->path = $path;
Please login to merge, or discard this patch.