| 1 | <?php |
||
| 12 | class Data_Source_Factory { |
||
| 13 | |||
| 14 | private static $instance = null; |
||
| 15 | |||
| 16 | private $data_sources = array(); |
||
| 17 | |||
| 18 | public function __construct() { |
||
| 24 | |||
| 25 | public function get_data( $post_id, $property_data ) { |
||
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * @return Data_Source_Factory |
||
| 39 | */ |
||
| 40 | public static function get_instance() { |
||
| 47 | |||
| 48 | } |
||
| 49 |