Conditions | 4 |
Paths | 3 |
Total Lines | 20 |
Code Lines | 11 |
Lines | 20 |
Ratio | 100 % |
Tests | 5 |
CRAP Score | 4.3731 |
Changes | 0 |
1 | <?php |
||
64 | View Code Duplication | function __call( $method_name, $args ) { |
|
65 | |||
66 | 1 | $value = null; |
|
67 | 1 | ||
68 | 1 | do { |
|
69 | $value = parent::__call( $method_name, $args ); |
||
70 | |||
71 | if ( $value ) { |
||
72 | 1 | break; |
|
73 | } |
||
74 | 1 | ||
75 | if ( $this->has_marker() ) { |
||
76 | $value = call_user_func_array( array( $this->marker(), $method_name ), $args ); |
||
77 | break; |
||
78 | } |
||
79 | } while ( false ); |
||
80 | |||
81 | return $value; |
||
82 | |||
83 | } |
||
84 | |||
86 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.