Completed
Pull Request — master (#12)
by Christopher
04:23
created
src/POData/Common/Messages/configuration.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 trait configuration
5 5
 {
6 6
 /**
7
-     * Error message to show when both page size and
8
-     * result collection size are specified.
9
-     *
10
-     * @return string The message
11
-     */
7
+ * Error message to show when both page size and
8
+ * result collection size are specified.
9
+ *
10
+ * @return string The message
11
+ */
12 12
     public static function configurationMaxResultAndPageSizeMutuallyExclusive()
13 13
     {
14 14
         return 'Specification of \'entity set page size\' is mutually exclusive with the specification of \'maximum result per collection\' in configuration';
Please login to merge, or discard this patch.
src/POData/Readers/Atom/AtomODataReader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
                                     'default' => 'http://www.w3.org/2005/Atom',
15 15
                                     'd' => 'http://schemas.microsoft.com/ado/2007/08/dataservices',
16 16
                                     'm' => 'http://schemas.microsoft.com/ado/2007/08/dataservices/metadata'
17
-                                 );
17
+                                    );
18 18
     protected static $QUERY_ROOT_FEED = '/default:feed';
19 19
     protected static $QUERY_ROOT_ENTRY = '/default:entry';
20 20
     protected static $QUERY_TITLE = 'default:title';
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
                                  ($attributes['EdmType'] == 'Edm.Int16' ||
346 346
                                   $attributes['EdmType'] == 'Edm.Int32' ||
347 347
                                   $attributes['EdmType'] == 'Edm.Int64')))) {
348
-                                   $value = '0';
348
+                                    $value = '0';
349 349
                             }
350 350
                         } else {
351 351
                             $value = null;
Please login to merge, or discard this patch.