| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 7 | class UseDevDashboard |
||
| 8 | { |
||
| 9 | |||
| 10 | /** @var \Magento\Backend\Model\Auth\Session */ |
||
| 11 | protected $_authSession; |
||
| 12 | |||
| 13 | /** @var \Firegento\DevDashboard\Api\ConfigRepositoryInterface */ |
||
| 14 | protected $_configRepository; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \Magento\Backend\Model\Auth\Session $authSession |
||
| 18 | * @param \Firegento\DevDashboard\Api\ConfigRepositoryInterface $configRepositoryInterface |
||
| 19 | */ |
||
| 20 | public function __construct( |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
| 30 | * @param \Magento\Backend\Model\Url $subject |
||
| 31 | * @param callable $callable |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function aroundGetStartupPageUrl(\Magento\Backend\Model\Url $subject, callable $callable) |
||
| 48 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.