@@ -4,7 +4,7 @@ |
||
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. |
@@ -89,7 +89,7 @@ |
||
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; |
@@ -156,7 +156,7 @@ |
||
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 | { |