Passed
Pull Request — master (#247)
by Christopher
05:44 queued 02:26
created
src/POData/Common/Messages/request.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public static function requestVersionTooLow($requestedVersion, $requiredVersion)
24 24
     {
25 25
         return 'Request version \'' . $requestedVersion . '\' is not supported for the request payload. The only'
26
-               . ' supported version is \'' . $requiredVersion . '\'.';
26
+                . ' supported version is \'' . $requiredVersion . '\'.';
27 27
     }
28 28
 
29 29
     /**
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     public static function requestVersionIsBiggerThanProtocolVersion($requiredVersion, $configuredVersion)
39 39
     {
40 40
         return 'The response requires that version ' . $requiredVersion . ' of the protocol be used, but the'
41
-               . ' MaxProtocolVersion of the data service is set to ' . $configuredVersion . '.';
41
+                . ' MaxProtocolVersion of the data service is set to ' . $configuredVersion . '.';
42 42
     }
43 43
 
44 44
     /**
@@ -71,6 +71,6 @@  discard block
 block discarded – undo
71 71
         $availableVersions
72 72
     ) {
73 73
         return 'The version value ' . $requestedVersion . ' in the header ' . $requestHeaderName . ' is not'
74
-               . ' supported, available versions are ' . $availableVersions;
74
+                . ' supported, available versions are ' . $availableVersions;
75 75
     }
76 76
 }
Please login to merge, or discard this patch.
src/POData/Common/Messages/resourceProperty.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public static function resourcePropertyInvalidKindParameter($argumentName)
21 21
     {
22 22
         return 'The argument \'' . $argumentName . '\' is not a valid ResourcePropertyKind enum value or'
23
-               . ' valid combination of ResourcePropertyKind enum values';
23
+                . ' valid combination of ResourcePropertyKind enum values';
24 24
     }
25 25
 
26 26
     /**
@@ -36,6 +36,6 @@  discard block
 block discarded – undo
36 36
         $resourceTypeArgName
37 37
     ) {
38 38
         return 'The \'' . $resourcePropertyKindArgName . '\' parameter does not match with the type of the resource'
39
-               . ' type in parameter \'' . $resourceTypeArgName . '\'';
39
+                . ' type in parameter \'' . $resourceTypeArgName . '\'';
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/POData/ObjectModel/ODataMediaLink.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,6 @@
 block discarded – undo
78 78
         $this->eTag        = $eTag;
79 79
         $this->name        = $name;
80 80
         $this->srcLink     = $srcLink;
81
-        $this->rel         = (null !== $rel) ? $rel :
82
-            ODataConstants::ATOM_MEDIA_RESOURCE_RELATION_ATTRIBUTE_VALUE . $name;
81
+        $this->rel         = (null !== $rel) ? $rel : ODataConstants::ATOM_MEDIA_RESOURCE_RELATION_ATTRIBUTE_VALUE . $name;
83 82
     }
84 83
 }
Please login to merge, or discard this patch.
src/POData/Readers/Atom/Processors/Entry/LinkProcessor.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         switch ($this->arrayKeyOrDefault($attributes, ODataConstants::ATOM_LINK_RELATION_ATTRIBUTE_NAME, null)) {
24 24
             case ODataConstants::ATOM_EDIT_RELATION_ATTRIBUTE_VALUE:
25 25
             case ODataConstants::ODATA_RELATED_NAMESPACE .
26
-                 $this->arrayKeyOrDefault($attributes, ODataConstants::ATOM_TITLE_ELELMET_NAME, ''):
26
+                    $this->arrayKeyOrDefault($attributes, ODataConstants::ATOM_TITLE_ELELMET_NAME, ''):
27 27
                 $object = ODataLink::class;
28 28
                 break;
29 29
             case ODataConstants::ATOM_EDIT_MEDIA_RELATION_ATTRIBUTE_VALUE:
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@
 block discarded – undo
43 43
     public function handleStartNode($tagNamespace, $tagName, $attributes)
44 44
     {
45 45
         //The only sub notes that will exist will be the inline ones before we process the feed or entity.
46
-        assert($tagNamespace  === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE));
46
+        assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE));
47 47
         assert($tagName === strtolower(ODataConstants::ATOM_INLINE_ELEMENT_NAME));
48 48
     }
49 49
 
50 50
     public function handleEndNode($tagNamespace, $tagName)
51 51
     {
52 52
         //The only sub notes that will exist will be the inline ones before we process the feed or entity.
53
-        assert($tagNamespace  === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE));
53
+        assert($tagNamespace === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE));
54 54
         assert($tagName === strtolower(ODataConstants::ATOM_INLINE_ELEMENT_NAME));
55 55
     }
56 56
 
Please login to merge, or discard this patch.
src/POData/Common/ErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public static function handleException(\Exception $exception, IService $service)
26 26
     {
27
-        $acceptTypesText     = $service->getHost()->getRequestAccept() ?? '';
27
+        $acceptTypesText = $service->getHost()->getRequestAccept() ?? '';
28 28
         try {
29 29
             $responseContentType = HttpProcessUtility::selectMimeType(
30 30
                 $acceptTypesText,
Please login to merge, or discard this patch.
src/POData/Readers/Atom/Processors/FeedProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function handleStartAtomLink($attributes)
79 79
     {
80
-        $rel                      = $this->arrayKeyOrDefault(
80
+        $rel = $this->arrayKeyOrDefault(
81 81
             $attributes,
82 82
             ODataConstants::ATOM_LINK_RELATION_ATTRIBUTE_NAME,
83 83
             ''
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     public function handleStartMetadataCount()
96 96
     {
97 97
         $this->enqueueEnd(function () {
98
-            $this->oDataFeed->rowCount =  (int)$this->popCharData();
98
+            $this->oDataFeed->rowCount = (int) $this->popCharData();
99 99
         });
100 100
     }
101 101
 
Please login to merge, or discard this patch.
src/POData/Readers/Atom/Processors/Entry/PropertyProcessor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         if (strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
46 46
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
47 47
         ) {
48
-            return ;
48
+            return;
49 49
         }
50 50
         //TODO: this will need to be expanded with opengis namespaces as well when supported
51 51
         assert($tagNamespace === ODataConstants::ODATA_NAMESPACE ||
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if (strtolower($tagNamespace) === strtolower(ODataConstants::ODATA_METADATA_NAMESPACE) &&
72 72
             strtolower($tagName) === strtolower((ODataConstants::ATOM_PROPERTIES_ELEMENT_NAME))
73 73
         ) {
74
-            return ;
74
+            return;
75 75
         }
76 76
         // Pops a complex object off the stack
77 77
         $prop                                                  = $this->properties->pop();
Please login to merge, or discard this patch.
src/POData/UriProcessor/UriProcessorNew.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -561,8 +561,7 @@
 block discarded – undo
561 561
     private function executeGetResourceRelated(SegmentDescriptor $segment, $eagerList)
562 562
     {
563 563
         $projectedProperty     = $segment->getProjectedProperty();
564
-        $projectedPropertyKind = null !== $projectedProperty ? $projectedProperty->getKind() :
565
-                                 new ResourcePropertyKind(0);
564
+        $projectedPropertyKind = null !== $projectedProperty ? $projectedProperty->getKind() : new ResourcePropertyKind(0);
566 565
         $queryResult           = null;
567 566
         switch ($projectedPropertyKind) {
568 567
             case ResourcePropertyKind::RESOURCE_REFERENCE():
Please login to merge, or discard this patch.
src/POData/ObjectModel/CynicSerialiser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1114,6 +1114,6 @@
 block discarded – undo
1114 1114
             return false;
1115 1115
         }
1116 1116
 
1117
-        return 0 == ($value % 4);
1117
+        return 0 == ($value%4);
1118 1118
     }
1119 1119
 }
Please login to merge, or discard this patch.