| 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
||
| 18 | class EE_Extra_Join extends EE_Base_Class { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $props_n_values |
||
| 22 | * @param null $timezone |
||
| 23 | * @return EE_Extra_Join|mixed |
||
| 24 | */ |
||
| 25 | public static function new_instance( $props_n_values = array(), $timezone = NULL ) { |
||
| 29 | |||
| 30 | |||
| 31 | |||
| 32 | /** |
||
| 33 | * @param array $props_n_values |
||
| 34 | * @param null $timezone |
||
| 35 | * @return EE_Extra_Join |
||
| 36 | */ |
||
| 37 | public static function new_instance_from_db ( $props_n_values = array(), $timezone = NULL ) { |
||
| 40 | |||
| 41 | } |
||
| 42 | //end class EE_Extra_Join |
||
| 43 |
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()method in theSoncalls the wrong method in the parent class.