1 | <?php |
||
9 | abstract class BaseIntegrationTest extends WebTestCase |
||
10 | { |
||
11 | use GitRepositoryTestTrait; |
||
12 | |||
13 | const GIT_REPOSITORY_PATH = '/tmp/gitkirepo/'; |
||
14 | |||
15 | protected function setUp() |
||
19 | |||
20 | public function tearDown(): void |
||
24 | |||
25 | // TODO: Remove, replaces Liip Make Client until fixed for Symfony 4.3 |
||
26 | protected function makeBrowser($authentication = false, array $params = []): AbstractBrowser |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | protected function getRepositoryTemplatePath() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function getRepositoryTargetPath() |
||
46 | } |
||
47 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.