diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-12 12:34:53 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-12 12:34:53 +0100 |
commit | dcb88e395b63ac0747b1eb1af5cf3d3e65173efb (patch) | |
tree | 1b3df0100bec4c585b4f2306f4b27ea3dc3673d0 /lib/private/app.php | |
parent | d94c1731d7887fa15156cec94916d71ee763d9d0 (diff) | |
download | nextcloud-server-dcb88e395b63ac0747b1eb1af5cf3d3e65173efb.tar.gz nextcloud-server-dcb88e395b63ac0747b1eb1af5cf3d3e65173efb.zip |
rework api of DependencyAnalyzer
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index c84e9c5e981..ecdc8ca8320 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -1112,8 +1112,8 @@ class OC_App { } // check for required dependencies - $dependencyAnalyzer = new DependencyAnalyzer($app, new Platform($config), $l); - $missing = $dependencyAnalyzer->analyze(); + $dependencyAnalyzer = new DependencyAnalyzer(new Platform($config), $l); + $missing = $dependencyAnalyzer->analyze($app); if(!empty($missing)) { $missingMsg = join(PHP_EOL, $missing); throw new \Exception( |