From 526374fade44ae494a5286554afa30e6d8121b8a Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Mon, 17 Apr 2017 10:18:27 +0200 Subject: [PATCH] Apply fixes from StyleCI (#19) --- src/Manipulations.php | 1 + tests/ManipulationsTest.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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);