1
0
Fork 0

Add chainability of disableCustomInstallers

pull/915/merge
Jordi Boggiano 2012-11-01 16:22:37 +01:00
parent 62bf84fc4f
commit 22344f6ad7
1 changed files with 4 additions and 0 deletions

View File

@ -844,9 +844,13 @@ class Installer
* Call this if you want to ensure that third-party code never gets * Call this if you want to ensure that third-party code never gets
* executed. The default is to automatically install, and execute * executed. The default is to automatically install, and execute
* custom third-party installers. * custom third-party installers.
*
* @return Installer
*/ */
public function disableCustomInstallers() public function disableCustomInstallers()
{ {
$this->installationManager->disableCustomInstallers(); $this->installationManager->disableCustomInstallers();
return $this;
} }
} }