| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class AbstractGuesser |
||
| 8 | { |
||
| 9 | protected $manager; |
||
| 10 | protected $fakers = []; |
||
| 11 | |||
| 12 | public function getManager() |
||
| 13 | { |
||
| 14 | return $this->manager; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function setManager(GuesserManager $manager) |
||
| 18 | { |
||
| 19 | $this->manager = $manager; |
||
| 20 | |||
| 21 | return $this; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function addFaker(Base $faker) |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function get($name) |
||
| 36 |