1 | <?php |
||
24 | trait LoggerAwareTrait |
||
25 | { |
||
26 | /** |
||
27 | * @var LoggerInterface |
||
28 | */ |
||
29 | private $logger; |
||
30 | |||
31 | /** |
||
32 | * Set logger. |
||
33 | * |
||
34 | * @param LoggerInterface $logger |
||
35 | * @return $this; |
||
|
|||
36 | */ |
||
37 | public function setLogger(LoggerInterface $logger) |
||
42 | |||
43 | /** |
||
44 | * Get logger. |
||
45 | * |
||
46 | * @return LoggerInterface |
||
47 | */ |
||
48 | 2 | public function getLogger() |
|
52 | } |
||
53 |
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.