@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use Gaufrette\Adapter; |
6 | 6 | use Ssh\Sftp as SftpClient; |
7 | 7 | |
8 | -@trigger_error('The ' . __NAMESPACE__ . '\Sftp adapter is deprecated since version 0.4 and will be removed in 1.0.', E_USER_DEPRECATED); |
|
8 | +@trigger_error('The '.__NAMESPACE__.'\Sftp adapter is deprecated since version 0.4 and will be removed in 1.0.', E_USER_DEPRECATED); |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * @deprecated The Sftp adapter is deprecated since version 0.4 and will be removed in 1.0. |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | */ |
178 | 178 | protected function computePath($key) |
179 | 179 | { |
180 | - return $this->directory . '/' . ltrim($key, '/'); |
|
180 | + return $this->directory.'/'.ltrim($key, '/'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -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; |