Completed
Push — master ( 7d1443...652cda )
by Christopher
08:44 queued 04:56
created
src/POData/Providers/ProvidersWrapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -966,7 +966,7 @@
 block discarded – undo
966 966
     }
967 967
     /**
968 968
      * @param ResourceSet      $resourceSet   The entity set containing the entity to fetch
969
-     * @param object           $sourceEntityInstance The source entity instance
969
+     * @param KeyDescriptor           $sourceEntityInstance The source entity instance
970 970
      * @param object           $data                 The New data for the entity instance.
971 971
      *
972 972
      * returns object|null returns the newly created model if sucessful or null if model creation failed.
Please login to merge, or discard this patch.
src/POData/UriProcessor/XML2Array.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
     public static function createArray($input_xml)
24 24
     {
25 25
         if(!isset($input_xml) || 0 === strlen($input_xml){
26
-           return [];
26
+            return [];
27 27
         }
28 28
         $xml = self::getXMLRoot();
29 29
         if (is_string($input_xml)) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public static function createArray($input_xml)
24 24
     {
25
-        if(!isset($input_xml) || 0 === strlen(trim($input_xml)){
25
+        if (!isset($input_xml) || 0 === strlen(trim($input_xml)){
26 26
            return [];
27 27
         }
28 28
         $xml = self::getXMLRoot();
Please login to merge, or discard this patch.