| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function load(ObjectManager $manager): void |
||
| 18 | { |
||
| 19 | if ($manager instanceof EntityManager === false) { |
||
| 20 | throw new \InvalidArgumentException('UsersFixtures $manager should be instance of EntityManager'); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** @var $manager EntityManager */ |
||
| 24 | $this->createGuestSession(self::GUEST_SESSION_TOKEN, $manager); |
||
| 25 | } |
||
| 26 | |||
| 37 | } |