From c6e9375b8ce75e818cb907dbb3580ee8e91346e8 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Tue, 13 Sep 2016 10:31:34 +1200 Subject: [PATCH] Remove 'silverstripe-recipe' type --- src/RecipeInstaller.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/RecipeInstaller.php b/src/RecipeInstaller.php index f4e8901..148b609 100644 --- a/src/RecipeInstaller.php +++ b/src/RecipeInstaller.php @@ -19,11 +19,10 @@ class RecipeInstaller extends LibraryInstaller { public function __construct( IOInterface $io, Composer $composer, - $type = 'silverstripe-recipe', Filesystem $filesystem = null, BinaryInstaller $binaryInstaller = null ) { - parent::__construct($io, $composer, $type, $filesystem, $binaryInstaller); + parent::__construct($io, $composer, null, $filesystem, $binaryInstaller); } public function install(InstalledRepositoryInterface $repo, PackageInterface $package)