From be915d46de6a633efd40ad232b8c2a22f758c152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Hu=CC=88rtgen?= <daniel@higidi.de> Date: Fri, 28 Apr 2017 17:36:33 +0200 Subject: [PATCH] BUGFIX: Make finder installer constructor argument optional --- src/Installer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Installer.php b/src/Installer.php index e863d5d..cad5a81 100644 --- a/src/Installer.php +++ b/src/Installer.php @@ -59,7 +59,7 @@ class Installer extends LibraryInstaller $type = self::TYPE, Filesystem $filesystem = null, BinaryInstaller $binaryInstaller = null, - Finder $finder + Finder $finder = null ) { parent::__construct($io, $composer, $type, $filesystem, $binaryInstaller); $this->finder = $finder ?: new Finder(); -- GitLab