From 22344f6ad7b295d42c148998891c4281512c7a79 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 1 Nov 2012 16:22:37 +0100 Subject: [PATCH] Add chainability of disableCustomInstallers --- src/Composer/Installer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Composer/Installer.php b/src/Composer/Installer.php index c7baf355b..aef1a2dba 100644 --- a/src/Composer/Installer.php +++ b/src/Composer/Installer.php @@ -844,9 +844,13 @@ class Installer * Call this if you want to ensure that third-party code never gets * executed. The default is to automatically install, and execute * custom third-party installers. + * + * @return Installer */ public function disableCustomInstallers() { $this->installationManager->disableCustomInstallers(); + + return $this; } }