-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathObsoleteResponseSniff.php
76 lines (69 loc) · 2.78 KB
/
ObsoleteResponseSniff.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types = 1);
namespace Magento2\Sniffs\Legacy;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
class ObsoleteResponseSniff implements Sniff
{
/**
* @var string[]
*/
private $obsoleteResponseMethods = [
'loadLayout' => 'Please use \Magento\Framework\View\Layout\Builder::build instead.',
'renderLayout' => 'Please use \Magento\Framework\Controller\ResultInterface::renderResult instead.',
'_redirect' => 'Please use \Magento\Backend\Model\View\Result\Redirect::render instead.',
'_forward' => 'Please use \Magento\Backend\Model\View\Result\Forward::forward instead.',
'_setActiveMenu' => 'Please use \Magento\Backend\Model\View\Result\Page::setActiveMenu instead.',
'_addBreadcrumb' => 'Please use \Magento\Backend\Model\View\Result\Page::addBreadcrumb instead.',
'_addContent' => 'Please use \Magento\Backend\Model\View\Result\Page::addContent instead.',
'_addLeft' => 'Please use \Magento\Backend\Model\View\Result\Page::addLeft instead.',
'_addJs' => 'Please use \Magento\Backend\Model\View\Result\Page::addJs instead.',
'_moveBlockToContainer' => 'Please use \Magento\Backend\Model\View\Result\Page::moveBlockToContainer instead.',
];
/**
* @var string[]
*/
private $obsoleteResponseWarningCodes = [
'loadLayout' => 'LoadLayoutResponseMethodFound',
'renderLayout' => 'RenderLayoutResponseMethodFound',
'_redirect' => 'RedirectResponseMethodFound',
'_forward' => 'ForwardResponseMethodFound',
'_setActiveMenu' => 'SetActiveMenuResponseMethodFound',
'_addBreadcrumb' => 'AddBreadcrumbResponseMethodFound',
'_addContent' => 'AddContentResponseMethodFound',
'_addLeft' => 'AddLeftResponseMethodFound',
'_addJs' => 'AddJsResponseMethodFound',
'_moveBlockToContainer' => 'MoveBlockToContainerResponseMethodFound',
];
/**
* @inheritdoc
*/
public function register()
{
return [
T_OBJECT_OPERATOR,
T_FUNCTION
];
}
/**
* @inheritDoc
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
$stringPos = $phpcsFile->findNext(T_STRING, $stackPtr + 1);
foreach ($this->obsoleteResponseMethods as $method => $errorMessage) {
if ($tokens[$stringPos]['content'] === $method) {
$phpcsFile->addWarning(
sprintf('%s method is deprecated. %s', $method, $errorMessage),
$stackPtr,
$this->obsoleteResponseWarningCodes[$method]
);
}
}
}
}