| 1 | <?php |
||
| 9 | class Report implements FilterReportInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \stdClass |
||
| 13 | */ |
||
| 14 | protected $rule; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var NormalizedValueVariant |
||
| 18 | */ |
||
| 19 | protected $value; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param \stdClass $rule |
||
| 23 | * @param NormalizedValueVariant $value |
||
| 24 | */ |
||
| 25 | public function __construct(\stdClass $rule, NormalizedValueVariant $value) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function __toString() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | protected function formatRuleTags() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return int |
||
| 49 | */ |
||
| 50 | public function getImpact() |
||
| 54 | } |