1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 20:28:21 +01:00

fixed default parameter

This commit is contained in:
Oliver Vogel 2014-05-11 18:23:31 +02:00
parent debd4477cc
commit 22283213a0

View File

@ -6,7 +6,7 @@ class InterlaceCommand extends \Intervention\Image\Commands\AbstractCommand
{
public function execute($image)
{
$mode = $this->getArgument(0);
$mode = $this->getArgument(0, true);
imageinterlace($image->getCore(), $mode);