| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class ObblmContextualizer |
||
| 9 | { |
||
| 10 | protected $rule; |
||
| 11 | protected $team; |
||
| 12 | |||
| 13 | public function __construct() |
||
| 14 | { |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getRule():?RuleHelperInterface |
||
| 18 | { |
||
| 19 | return $this->rule; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function setRule(RuleHelperInterface $rule) |
||
| 23 | { |
||
| 24 | $this->rule = $rule; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getTeam():?Team |
||
| 28 | { |
||
| 29 | return $this->team; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function setteam(Team $team) |
||
| 35 | } |
||
| 36 | } |
||
| 37 |