| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | abstract class Localization_Event |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | protected $args; |
||
| 27 | |||
| 28 | public function __construct(array $args) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Fetches the argument at the specified index in the |
||
| 35 | * event's arguments list, if it exists. |
||
| 36 | * |
||
| 37 | * @param int $index Zero-based index number. |
||
| 38 | * @return mixed|NULL |
||
| 39 | */ |
||
| 40 | public function getArgument(int $index) |
||
| 49 |