@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | foreach(['prepare', "before_$method", $method, "after_$method"] as $step => $chainling) |
31 | 31 | { |
32 | 32 | $this->search_and_execute_trait_methods($chainling); |
33 | - if(method_exists($this, $chainling) && empty($this->errors())) |
|
33 | + if(method_exists($this, $chainling) && empty($this->errors())) |
|
34 | 34 | { |
35 | 35 | $res = $this->$chainling(); |
36 | 36 | |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | if(method_exists($this, 'conclude')) // conclude always executed, even with has_halting_messages |
51 | - $this->conclude(); |
|
51 | + $this->conclude(); |
|
52 | 52 | |
53 | 53 | if(method_exists($this, 'display')) |
54 | - $this->display($custom_template); // ret value ignored.. |
|
54 | + $this->display($custom_template); // ret value ignored.. |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | public function prepare() |