diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-11-25 14:07:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 14:07:00 +0100 |
commit | c7d5b8fc493520ab40076ddade3632152dbfef00 (patch) | |
tree | 4de0070d04b69b5ba6ef478b241359260aa57113 /lib/public/App | |
parent | 20ec763337428f3a0e7c9e34e0246c1f5fb3a838 (diff) | |
parent | 68748d4f85dd23238aaafb787b1c341f0f2f0419 (diff) | |
download | nextcloud-server-c7d5b8fc493520ab40076ddade3632152dbfef00.tar.gz nextcloud-server-c7d5b8fc493520ab40076ddade3632152dbfef00.zip |
Merge pull request #18079 from nextcloud/fixes/phpcs
Some php-cs fixes
Diffstat (limited to 'lib/public/App')
-rw-r--r-- | lib/public/App/AppPathNotFoundException.php | 2 | ||||
-rw-r--r-- | lib/public/App/IAppManager.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/App/AppPathNotFoundException.php b/lib/public/App/AppPathNotFoundException.php index db5a1803c83..fbca8899d3a 100644 --- a/lib/public/App/AppPathNotFoundException.php +++ b/lib/public/App/AppPathNotFoundException.php @@ -29,4 +29,4 @@ namespace OCP\App; * @package OCP\App * @since 11.0.0 */ -class AppPathNotFoundException extends \Exception {}
\ No newline at end of file +class AppPathNotFoundException extends \Exception {} diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index 391e3f0dd64..46025d9831b 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -28,8 +28,8 @@ namespace OCP\App; -use OCP\IUser; use OCP\IGroup; +use OCP\IUser; /** * Interface IAppManager |