@@ -10,7 +10,6 @@ |
||
10 | 10 | |
11 | 11 | namespace Directus\SDK; |
12 | 12 | use Directus\Util\ArrayUtils; |
13 | -use Directus\Util\StringUtils; |
|
14 | 13 | |
15 | 14 | /** |
16 | 15 | * Client Remote |
@@ -276,7 +276,7 @@ |
||
276 | 276 | $bookmarkData = [ |
277 | 277 | 'section' => 'search', |
278 | 278 | 'title' => $title, |
279 | - 'url' => 'tables/' . $tableName . '/pref/' . $title |
|
279 | + 'url' => 'tables/'.$tableName.'/pref/'.$title |
|
280 | 280 | ]; |
281 | 281 | |
282 | 282 | $path = $this->buildPath(static::TABLE_BOOKMARKS_CREATE_ENDPOINT); |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | $tableGateway = $this->getTableGateway($tableName); |
200 | 200 | $data = $this->processData($tableName, $data); |
201 | 201 | |
202 | - foreach($data as $key => $value) { |
|
202 | + foreach ($data as $key => $value) { |
|
203 | 203 | if ($value instanceof File) { |
204 | 204 | $data[$key] = $this->processFile($value); |
205 | 205 | } |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $tableGateway = $this->getTableGateway($tableName); |
219 | 219 | $data = $this->processData($tableName, $data); |
220 | 220 | |
221 | - foreach($data as $key => $value) { |
|
221 | + foreach ($data as $key => $value) { |
|
222 | 222 | if ($value instanceof File) { |
223 | 223 | $data[$key] = $this->processFile($value); |
224 | 224 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | $bookmarkData = [ |
326 | 326 | 'section' => 'search', |
327 | 327 | 'title' => $title, |
328 | - 'url' => 'tables/' . $tableName . '/pref/' . $title, |
|
328 | + 'url' => 'tables/'.$tableName.'/pref/'.$title, |
|
329 | 329 | 'user' => $data['user'] |
330 | 330 | ]; |
331 | 331 |