Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function __construct( |
||
46 | $generator, |
||
47 | string $generatorMethod, |
||
48 | $voter = null, |
||
49 | ?string $voterMethod = self::VOTER_DEFAULT_METHOD |
||
50 | ) { |
||
51 | $this->generator = $generator; |
||
52 | $this->generatorMethod = $generatorMethod; |
||
53 | $this->voter = $voter; |
||
54 | $this->voterMethod = $voterMethod ?? self::VOTER_DEFAULT_METHOD; |
||
55 | } |
||
56 | |||
82 |