Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class Item extends SimplePie_Item |
||
15 | { |
||
16 | /** |
||
17 | * Magic method handler |
||
18 | * |
||
19 | * @param string $name Property name |
||
20 | * @return mixed |
||
21 | */ |
||
22 | public function __get($name) |
||
23 | { |
||
24 | return $this->{'get_' . $name}(); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Magic method handler |
||
29 | * |
||
30 | * @param string $name Property name |
||
31 | * @return bool |
||
32 | */ |
||
33 | public function __isset($name) |
||
36 | } |
||
37 | } |
||
38 |