Completed
Push — master ( 57e5ee...852076 )
by Alex
14s queued 13s
created
src/Library/Expressions/EdmNullExpression.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function getValueKind(): ValueKind
34 34
     {
35
-        return ValueKind::Null();
35
+        return ValueKind::null();
36 36
     }
37 37
 
38 38
     /**
@@ -40,6 +40,6 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function getExpressionKind(): ExpressionKind
42 42
     {
43
-        return ExpressionKind::Null();
43
+        return ExpressionKind::null();
44 44
     }
45 45
 }
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.