Completed
Push — master ( fcae4c...6f6645 )
by Andrea Marco
02:23
created
src/Pipes/AbstractPipe.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,9 @@
 block discarded – undo
69 69
 	 */
70 70
 	private function callIfExistsAndEnabled($method, array $parameters = [])
71 71
 	{
72
-		if( ! $this->isEnabled()) return;
72
+		if( ! $this->isEnabled()) {
73
+		    return;
74
+		}
73 75
 
74 76
 		if(method_exists($this, $method) && $this->{"{$method}IsEnabled"}())
75 77
 		{
Please login to merge, or discard this patch.