We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | final class Message |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Result |
||
| 12 | */ |
||
| 13 | private $result; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var Reader |
||
| 17 | */ |
||
| 18 | private $annotationReader; |
||
| 19 | |||
| 20 | public function __construct(Result $result, Reader $annotationReader) |
||
| 25 | |||
| 26 | public function getMain(): string |
||
| 29 | |||
| 30 | public function getFull(): string |
||
| 33 | |||
| 34 | public function getList(): string |
||
| 37 | |||
| 38 | public function getAll(): array |
||
| 41 | |||
| 42 | public function __toString(): string |
||
| 46 | } |
||
| 47 |