diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-11 10:04:25 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-03-11 13:59:18 +0100 |
commit | 985b11876f8acb2aaacf55e1b4c7f6b71a0a2e1f (patch) | |
tree | 7dc6cfee00ca925eb0e830f3e10d50c301036a05 /build | |
parent | 9be7f4d19d34976ca5c584bfc122ab7b6ac854ac (diff) | |
download | nextcloud-server-985b11876f8acb2aaacf55e1b4c7f6b71a0a2e1f.tar.gz nextcloud-server-985b11876f8acb2aaacf55e1b4c7f6b71a0a2e1f.zip |
asCreatingAShareWith has no return
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/bootstrap/Sharing.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/Sharing.php b/build/integration/features/bootstrap/Sharing.php index 79c5a698830..8e6eea6be5a 100644 --- a/build/integration/features/bootstrap/Sharing.php +++ b/build/integration/features/bootstrap/Sharing.php @@ -58,7 +58,7 @@ trait Sharing{ * @param \Behat\Gherkin\Node\TableNode|null $body */ public function creatingShare($body) { - return $this->asCreatingAShareWith($this->currentUser, $body); + $this->asCreatingAShareWith($this->currentUser, $body); } /** |