Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function testPhone() |
||
28 | { |
||
29 | $client = $this->getClientWithMockedGet('validator-phone.json'); |
||
30 | |||
31 | $client = new ValidatorsClient($this->getConfig(), $client); |
||
32 | $entry = $client->phone('61304560', 45, true, "mobile"); |
||
33 | |||
34 | $this->assertInstanceOf(PhoneValidation::class, $entry); |
||
35 | } |
||
37 |