Completed
Pull Request — master (#640)
by Tobias
03:47
created
src/Gaufrette/Adapter/LazyOpenCloud.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Gaufrette\Adapter\OpenStackCloudFiles\ObjectStoreFactoryInterface;
6 6
 
7
-@trigger_error('The ' . __NAMESPACE__ . '\LazyOpenCloud adapter is deprecated since version 0.4 and will be removed in 1.0. Use the OpenCloud adapter instead.', E_USER_DEPRECATED);
7
+@trigger_error('The '.__NAMESPACE__.'\LazyOpenCloud adapter is deprecated since version 0.4 and will be removed in 1.0. Use the OpenCloud adapter instead.', E_USER_DEPRECATED);
8 8
 
9 9
 /**
10 10
  * LazyOpenCloud.
Please login to merge, or discard this patch.
src/Gaufrette/Stream/InMemoryBuffer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         } else {
90 90
             $before = substr($this->content, 0, $this->position);
91 91
             $after = $newNumBytes > $newPosition ? substr($this->content, $newPosition) : '';
92
-            $this->content = $before . $data . $after;
92
+            $this->content = $before.$data.$after;
93 93
         }
94 94
 
95 95
         $this->position = $newPosition;
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/OpenCloud.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
      *
157 157
      * @param string $key
158 158
      *
159
-     * @return int|bool An UNIX like timestamp or false
159
+     * @return string|false An UNIX like timestamp or false
160 160
      */
161 161
     public function mtime($key)
162 162
     {
Please login to merge, or discard this patch.