| 1 | <?php |
||
| 10 | class TraitDefinition extends ParentDefinition |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $filepath; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Compile the definition |
||
| 19 | * |
||
| 20 | * @param Context $context |
||
| 21 | * @return boolean |
||
| 22 | */ |
||
| 23 | public function compile(Context $context) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getFilepath() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $filepath |
||
| 38 | */ |
||
| 39 | public function setFilepath($filepath) |
||
| 43 | } |
||
| 44 |