diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-07-24 13:54:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 13:54:30 +0200 |
commit | 5bc0edbd297285f4ceded0bb9a8dcb59ba61ada4 (patch) | |
tree | 84c375c5bb03066c8ba1fd12a7c1fc7a342b0352 /lib/private/Command/AsyncBus.php | |
parent | 71f1ef9c1d0f826df5fa23c96b46575f1231f79c (diff) | |
parent | 5f227bd93b23d8a528476e3d9243dae31c9d0050 (diff) | |
download | nextcloud-server-5bc0edbd297285f4ceded0bb9a8dcb59ba61ada4.tar.gz nextcloud-server-5bc0edbd297285f4ceded0bb9a8dcb59ba61ada4.zip |
Merge pull request #5844 from nextcloud/phpstorm_inspect2
More phpstorm inspection fixes
Diffstat (limited to 'lib/private/Command/AsyncBus.php')
-rw-r--r-- | lib/private/Command/AsyncBus.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Command/AsyncBus.php b/lib/private/Command/AsyncBus.php index 3c1f67da0cb..fb3cbee7240 100644 --- a/lib/private/Command/AsyncBus.php +++ b/lib/private/Command/AsyncBus.php @@ -45,7 +45,7 @@ class AsyncBus implements IBus { /** * @param \OCP\BackgroundJob\IJobList $jobList */ - function __construct($jobList) { + public function __construct($jobList) { $this->jobList = $jobList; } |