forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit80.yaml
33 lines (27 loc) · 1.32 KB
/
phpunit80.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
imports:
- { resource: 'phpunit-exception.yaml' }
services:
# https://github.com/rectorphp/rector/issues/1024
Rector\TypeDeclaration\Rector\ClassMethod\AddParamTypeDeclarationRector:
$typehintForParameterByMethodByClass:
'PHPUnit\Framework\TestCase':
__construct:
2: '' # no type, $dataName
Rector\PHPUnit\Rector\MethodCall\SpecificAssertContainsRector: null
Rector\PHPUnit\Rector\MethodCall\SpecificAssertInternalTypeRector: null
Rector\Renaming\Rector\Class_\RenameClassRector:
$oldToNewClasses:
# https://github.com/sebastianbergmann/phpunit/issues/3123
'PHPUnit_Framework_MockObject_MockObject': 'PHPUnit\Framework\MockObject\MockObject'
Rector\PHPUnit\Rector\MethodCall\AssertEqualsParameterToSpecificMethodsTypeRector: null
Rector\Core\Rector\ClassMethod\AddReturnTypeDeclarationRector:
$typehintForMethodByClass:
'PHPUnit\Framework\TestCase':
setUpBeforeClass: 'void'
setUp: 'void'
assertPreConditions: 'void'
assertPostConditions: 'void'
tearDown: 'void'
tearDownAfterClass: 'void'
onNotSuccessfulTest: 'void'
Rector\PHPUnit\Rector\MethodCall\ReplaceAssertArraySubsetRector: null