Add chainability of disableCustomInstallers

main
Jordi Boggiano 12 years ago
parent 62bf84fc4f
commit 22344f6ad7

@ -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;
} }
} }

Loading…
Cancel
Save