diff options
author | Joas Schilling <coding@schilljs.com> | 2018-01-26 10:15:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-26 10:15:39 +0100 |
commit | c2b1bd92d6f6e675f7ffab420cd61c5be701c4a6 (patch) | |
tree | 10e093ff030f1436fe3862c4b1944dbcf050723d /apps/files_trashbin/lib/Storage.php | |
parent | fab951e4b3d103b68b21ccb864d229c4023b57ac (diff) | |
parent | 0a56d2185e79caf81f5160cb8503955d9c3108a6 (diff) | |
download | nextcloud-server-c2b1bd92d6f6e675f7ffab420cd61c5be701c4a6.tar.gz nextcloud-server-c2b1bd92d6f6e675f7ffab420cd61c5be701c4a6.zip |
Merge pull request #8063 from nextcloud/inline-value
Return value immediately instead of assigning to a one-time variable
Diffstat (limited to 'apps/files_trashbin/lib/Storage.php')
-rw-r--r-- | apps/files_trashbin/lib/Storage.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/Storage.php b/apps/files_trashbin/lib/Storage.php index e6609034f91..3025d36a210 100644 --- a/apps/files_trashbin/lib/Storage.php +++ b/apps/files_trashbin/lib/Storage.php @@ -254,8 +254,7 @@ class Storage extends Wrapper { * @return MoveToTrashEvent */ protected function createMoveToTrashEvent(Node $node) { - $event = new MoveToTrashEvent($node); - return $event; + return new MoveToTrashEvent($node); } /** |