@@ -89,7 +89,7 @@ |
||
89 | 89 | |
90 | 90 | if ($status) { |
91 | 91 | $params = array('key' => $key, 'class' => $metadata['mogile_class'], 'devid' => $res['devid'], |
92 | - 'fid' => $res['fid'], 'path' => urldecode($res['path']), ); |
|
92 | + 'fid' => $res['fid'], 'path' => urldecode($res['path']),); |
|
93 | 93 | $closeres = $this->doRequest('CREATE_CLOSE', $params); |
94 | 94 | } |
95 | 95 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | */ |
59 | 59 | public function keys() |
60 | 60 | { |
61 | - return array_map(function ($content) { |
|
61 | + return array_map(function($content) { |
|
62 | 62 | return $content['path']; |
63 | 63 | }, $this->adapter->listContents()); |
64 | 64 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $this->ensureDirectoryExists($this->directory, $this->create); |
122 | 122 | |
123 | 123 | $file = $this->computePath($key); |
124 | - $lines = ftp_rawlist($this->getConnection(), '-al ' . \Gaufrette\Util\Path::dirname($file)); |
|
124 | + $lines = ftp_rawlist($this->getConnection(), '-al '.\Gaufrette\Util\Path::dirname($file)); |
|
125 | 125 | |
126 | 126 | if (false === $lines) { |
127 | 127 | return false; |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | } |
527 | 527 | |
528 | 528 | // enable utf8 mode if configured |
529 | - if($this->utf8 == true) { |
|
529 | + if ($this->utf8 == true) { |
|
530 | 530 | ftp_raw($this->connection, "OPTS UTF8 ON"); |
531 | 531 | } |
532 | 532 |
@@ -183,7 +183,7 @@ |
||
183 | 183 | |
184 | 184 | return array( |
185 | 185 | 'dirs' => array(), |
186 | - 'keys' => array_map(function ($value) { |
|
186 | + 'keys' => array_map(function($value) { |
|
187 | 187 | return $value['_key']; |
188 | 188 | }, |
189 | 189 | $keys), |
@@ -512,10 +512,10 @@ |
||
512 | 512 | { |
513 | 513 | $blobList = $this->blobProxy->listBlobs($containerName); |
514 | 514 | return array_map( |
515 | - function (Blob $blob) use ($prefix) { |
|
515 | + function(Blob $blob) use ($prefix) { |
|
516 | 516 | $name = $blob->getName(); |
517 | 517 | if (null !== $prefix) { |
518 | - $name = $prefix .'/'. $name; |
|
518 | + $name = $prefix.'/'.$name; |
|
519 | 519 | } |
520 | 520 | return $name; |
521 | 521 | }, |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | { |
101 | 101 | $encodedUrl = preg_replace_callback( |
102 | 102 | '%[^:/@?&=#]+%usD', |
103 | - function ($matches) |
|
103 | + function($matches) |
|
104 | 104 | { |
105 | 105 | return urlencode($matches[0]); |
106 | 106 | }, |
@@ -109,12 +109,12 @@ discard block |
||
109 | 109 | |
110 | 110 | $parts = parse_url($encodedUrl); |
111 | 111 | |
112 | - if($parts === false) |
|
112 | + if ($parts === false) |
|
113 | 113 | { |
114 | 114 | return false; |
115 | 115 | } |
116 | 116 | |
117 | - foreach($parts as $name => $value) |
|
117 | + foreach ($parts as $name => $value) |
|
118 | 118 | { |
119 | 119 | $parts[$name] = urldecode($value); |
120 | 120 | } |