diff --git a/src/Manipulations.php b/src/Manipulations.php index 03d3ee55..07fe9e1e 100644 --- a/src/Manipulations.php +++ b/src/Manipulations.php @@ -592,6 +592,7 @@ private function hasMultipleConversions(array $manipulations) : bool return true; } } + return false; } diff --git a/tests/ManipulationsTest.php b/tests/ManipulationsTest.php index 0e55d2c1..1db85703 100644 --- a/tests/ManipulationsTest.php +++ b/tests/ManipulationsTest.php @@ -81,7 +81,7 @@ public function it_can_create_from_sequence_array() ['width' => '123'], ['manualCrop' => '20,10,10,10'], ]; - + $manipulations = Manipulations::create($sequenceArray); $this->assertEquals($sequenceArray, $manipulations->toArray()); @@ -94,7 +94,7 @@ public function it_can_create_from_single_sequence() [ 'manualCrop' => '20,10,10,10', 'width' => '123', - ] + ], ]; $manipulations = Manipulations::create($sequence);