Completed
Push — 2538542-path ( aff5d3...8ec75c )
by Frédéric G.
02:32
created
mongodb_cache/mongodb_cache_plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
    */
112 112
   protected function getBinDataCreator() {
113 113
     if (version_compare('mongo', '1.2.11') < 0) {
114
-      $result = function ($data) {
114
+      $result = function($data) {
115 115
         return new \MongoBinData($data);
116 116
       };
117 117
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
       $type = version_compare('mongo', '1.5.0') < 0
120 120
         ? \MongoBinData::BYTE_ARRAY
121 121
         : \MongoBinData::GENERIC;
122
-      $result = function ($data) use($type) {
122
+      $result = function($data) use($type) {
123 123
         return new \MongoBinData($data, $type);
124 124
       };
125 125
     }
Please login to merge, or discard this patch.
mongodb_path/src/Tests/PathSaveTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Contains PathSaveTest.
5
- *
6
- * This is a replica of the core test with the same name, wrapped with MongoDB
7
- * setup and teardown.
8
- */
3
+   * @file
4
+   * Contains PathSaveTest.
5
+   *
6
+   * This is a replica of the core test with the same name, wrapped with MongoDB
7
+   * setup and teardown.
8
+   */
9 9
 
10 10
 namespace Drupal\mongodb_path\Tests;
11 11
 
Please login to merge, or discard this patch.