-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
MoveApplicationContextToEnvironmentApiRector.php
60 lines (52 loc) · 1.78 KB
/
MoveApplicationContextToEnvironmentApiRector.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
declare(strict_types=1);
namespace Ssch\TYPO3Rector\TYPO310\v2;
use PhpParser\Node;
use PhpParser\Node\Expr\StaticCall;
use PHPStan\Type\ObjectType;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\Contract\DocumentedRuleInterface;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.2/Deprecation-89631-UseEnvironmentAPIToFetchApplicationContext.html
* @see \Ssch\TYPO3Rector\Tests\Rector\v10\v2\MoveApplicationContextToEnvironmentApiRector\MoveApplicationContextToEnvironmentApiRectorTest
*/
final class MoveApplicationContextToEnvironmentApiRector extends AbstractRector implements DocumentedRuleInterface
{
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [StaticCall::class];
}
/**
* @param StaticCall $node
*/
public function refactor(Node $node): ?Node
{
if (! $this->nodeTypeResolver->isMethodStaticCallOrClassMethodObjectType(
$node,
new ObjectType('TYPO3\CMS\Core\Utility\GeneralUtility')
)) {
return null;
}
if (! $this->isName($node->name, 'getApplicationContext')) {
return null;
}
return $this->nodeFactory->createStaticCall('TYPO3\CMS\Core\Core\Environment', 'getContext', []);
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Use Environment API to fetch application context', [new CodeSample(
<<<'CODE_SAMPLE'
GeneralUtility::getApplicationContext();
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
Environment::getContext();
CODE_SAMPLE
)]);
}
}