1 | <?php |
||
20 | class Representation extends BaseObject implements RepresentationInterface |
||
21 | { |
||
22 | /** @var string */ |
||
23 | public $label; |
||
24 | |||
25 | /** @var array */ |
||
26 | public $columns = []; |
||
27 | |||
28 | /** @var bool */ |
||
29 | public $visible = true; |
||
30 | |||
31 | /** {@inheritdoc} */ |
||
32 | public function getColumns() |
||
36 | |||
37 | /** @return {@inheritdoc} */ |
||
|
|||
38 | public function getLabel() |
||
42 | |||
43 | /** @return {@inheritdoc} */ |
||
44 | public function isVisible(): bool |
||
48 | } |
||
49 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.