diff options
Diffstat (limited to 'build/integration/features/bootstrap/FilesDropContext.php')
-rw-r--r-- | build/integration/features/bootstrap/FilesDropContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/FilesDropContext.php b/build/integration/features/bootstrap/FilesDropContext.php index 8f522d6f2ce..d1fd2e8d0c9 100644 --- a/build/integration/features/bootstrap/FilesDropContext.php +++ b/build/integration/features/bootstrap/FilesDropContext.php @@ -37,7 +37,7 @@ class FilesDropContext implements Context, SnippetAcceptingContext { public function droppingFileWith($path, $content) { $client = new Client(); $options = []; - if (count($this->lastShareData->data->element) > 0){ + if (count($this->lastShareData->data->element) > 0) { $token = $this->lastShareData->data[0]->token; } else { $token = $this->lastShareData->data[0]->token; @@ -65,7 +65,7 @@ class FilesDropContext implements Context, SnippetAcceptingContext { public function creatingFolderInDrop($folder) { $client = new Client(); $options = []; - if (count($this->lastShareData->data->element) > 0){ + if (count($this->lastShareData->data->element) > 0) { $token = $this->lastShareData->data[0]->token; } else { $token = $this->lastShareData->data[0]->token; |