From cf9231466c8da519a5f7b883ba110fdd49fd1f65 Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Sat, 21 Feb 2015 12:03:50 +1100 Subject: [PATCH] bindSoftDependencies -> bindContainerObjects --- modules/system/classes/PluginManager.php | 4 ++-- modules/system/classes/UpdateManager.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/system/classes/PluginManager.php b/modules/system/classes/PluginManager.php index 62108ccaf..31f027385 100644 --- a/modules/system/classes/PluginManager.php +++ b/modules/system/classes/PluginManager.php @@ -66,7 +66,7 @@ class PluginManager */ protected function init() { - $this->bindSoftDependencies(); + $this->bindContainerObjects(); $this->metaFile = storage_path() . '/cms/disabled.json'; $this->loadDisabled(); $this->loadPlugins(); @@ -78,7 +78,7 @@ class PluginManager * the IoC container reboots. This provides a way to rebuild * for the purposes of unit testing. */ - public function bindSoftDependencies() + public function bindContainerObjects() { $this->app = App::make('app'); } diff --git a/modules/system/classes/UpdateManager.php b/modules/system/classes/UpdateManager.php index fb10d58f9..ef03695d9 100644 --- a/modules/system/classes/UpdateManager.php +++ b/modules/system/classes/UpdateManager.php @@ -78,7 +78,7 @@ class UpdateManager $this->tempDirectory = temp_path(); $this->baseDirectory = base_path(); $this->disableCoreUpdates = Config::get('cms.disableCoreUpdates', false); - $this->bindSoftDependencies(); + $this->bindContainerObjects(); /* * Ensure temp directory exists @@ -93,7 +93,7 @@ class UpdateManager * the IoC container reboots. This provides a way to rebuild * for the purposes of unit testing. */ - public function bindSoftDependencies() + public function bindContainerObjects() { $this->migrator = App::make('migrator'); $this->repository = App::make('migration.repository');