Passed
Push — master ( 32c874...a28393 )
by David
57s
created
lib/Dwoo/Core.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -589,8 +589,7 @@
 block discarded – undo
589 589
             if (!class_exists($class) && !function_exists($class)) {
590 590
                 try {
591 591
                     $this->getLoader()->loadPlugin($callback);
592
-                }
593
-                catch (Exception $e) {
592
+                } catch (Exception $e) {
594 593
                     if (strstr($callback, self::NAMESPACE_PLUGINS_FILTERS)) {
595 594
                         throw new Exception(
596 595
                             'Wrong filter name : ' . $callback . ', the "Filter" prefix should 
Please login to merge, or discard this patch.
lib/Dwoo/Compiler.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -478,8 +478,7 @@  discard block
 block discarded – undo
478 478
         if (!class_exists($class) && !function_exists($class)) {
479 479
             try {
480 480
                 $this->getDwoo()->getLoader()->loadPlugin($name);
481
-            }
482
-            catch (Exception $e) {
481
+            } catch (Exception $e) {
483 482
                 throw new Exception('Processor ' . $name . ' could not be found in your plugin directories, please ensure it is in a file named ' . $name . '.php in the plugin directory');
484 483
             }
485 484
         }
@@ -1633,8 +1632,7 @@  discard block
 block discarded – undo
1633 1632
                     // load if plugin
1634 1633
                     try {
1635 1634
                         $this->getPluginType('if');
1636
-                    }
1637
-                    catch (Exception $e) {
1635
+                    } catch (Exception $e) {
1638 1636
                         throw new CompilationException($this, 'Assignments require the "if" plugin to be accessible');
1639 1637
                     }
1640 1638
 
@@ -3449,8 +3447,7 @@  discard block
 block discarded – undo
3449 3447
                 if ($pluginType === - 1) {
3450 3448
                     try {
3451 3449
                         $this->getDwoo()->getLoader()->loadPlugin('Plugin' . Core::toCamelCase($name));
3452
-                    }
3453
-                    catch (Exception $e) {
3450
+                    } catch (Exception $e) {
3454 3451
                         if (isset($phpFunc)) {
3455 3452
                             $pluginType = Core::NATIVE_PLUGIN;
3456 3453
                         } elseif (is_object($this->getDwoo()->getPluginProxy()) && $this->getDwoo()->getPluginProxy()->handles($name)) {
Please login to merge, or discard this patch.