| Total Lines | 50 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | interface IMagicScopes |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Gets the fully qualified class of self:: scope. |
||
| 14 | * Null if not applicable. |
||
| 15 | * |
||
| 16 | * @return string|null |
||
| 17 | */ |
||
| 18 | public function getSelfClass(); |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Gets the value of self::class constant. |
||
| 22 | * Null if not applicable. |
||
| 23 | * |
||
| 24 | * @return string|null |
||
| 25 | */ |
||
| 26 | public function getSelfClassConstant(); |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Gets the fully qualified class of static:: scope. |
||
| 30 | * Null if not applicable. |
||
| 31 | * |
||
| 32 | * @return string|null |
||
| 33 | */ |
||
| 34 | public function getStaticClass(); |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Gets the value of static::class constant. |
||
| 38 | * Null if not applicable. |
||
| 39 | * |
||
| 40 | * @return string|null |
||
| 41 | */ |
||
| 42 | public function getStaticClassConstant(); |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Gets the fully qualified class of parent:: scope. |
||
| 46 | * Null if not applicable. |
||
| 47 | * |
||
| 48 | * @return string|null |
||
| 49 | */ |
||
| 50 | public function getParentClass(); |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Gets the value of parent::class constant. |
||
| 54 | * Null if not applicable. |
||
| 55 | * |
||
| 56 | * @return string|null |
||
| 57 | */ |
||
| 58 | public function getParentClassConstant(); |
||
| 59 | } |
||
| 60 |