Skip to content

Commit

Permalink
Fix static test.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmalevanec authored and eduard13 committed Dec 21, 2018
1 parent 83cbf32 commit 02bc6fa
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,14 @@ public function getHref()
* Get current mca
*
* @return string
* @SuppressWarnings(PHPMD.RequestAwareBlockMethod)
*/
private function getMca()
{
$routeParts = [
$this->_request->getModuleName(),
$this->_request->getControllerName(),
$this->_request->getActionName(),
(string)$this->_request->getModuleName(),
(string)$this->_request->getControllerName(),
(string)$this->_request->getActionName(),
];

$parts = [];
Expand Down

0 comments on commit 02bc6fa

Please sign in to comment.