We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class MailRepositoryTest extends FunctionalTestCase |
||
10 | { |
||
11 | /** |
||
12 | * @var MailRepository |
||
13 | */ |
||
14 | protected $mailRepository; |
||
15 | |||
16 | public function setUp(): void |
||
17 | { |
||
18 | parent::setUp(); |
||
19 | |||
20 | $this->mailRepository = $this->initializeRepository( |
||
21 | MailRepository::class, |
||
22 | 20000 |
||
23 | ); |
||
24 | |||
25 | $this->importDataSet(__DIR__ . '/../../Fixtures/Repository/mail.xml'); |
||
|
|||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @test |
||
30 | * @group find |
||
31 | */ |
||
32 | public function canFindAllWithPid(): void |
||
46 | } |
||
47 | } |
||
48 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.