| 1 | <?php namespace BestServedCold\PhalueObjects\Utility\Native; |
||
| 10 | class Constant |
||
| 11 | { |
||
| 12 | use ExtendedArrayTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $definedConstants; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constants constructor. |
||
| 21 | */ |
||
| 22 | public function __construct() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param $category |
||
| 29 | * @param array $key |
||
| 30 | * @return mixed |
||
| 31 | */ |
||
| 32 | public function __call($category, array $key) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return static |
||
| 40 | */ |
||
| 41 | public static function init() |
||
| 45 | } |
||
| 46 |