| 1 | <?php |
||
| 23 | class TagMeta |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Current working class name |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | public $className = ''; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Current method or property name |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $name = ''; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Implemented renderer interfaces |
||
| 40 | * @var string[] |
||
| 41 | */ |
||
| 42 | public $interfaces = []; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Class constructor |
||
| 46 | * @param RendererInterface $renderer |
||
| 47 | */ |
||
| 48 | public function __construct(RendererInterface $renderer) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Convert to json |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | public function toJson() |
||
| 63 | |||
| 64 | } |
||
| 65 |