Index   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 5
c 1
b 0
f 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 7 1
1
<?php
2
/**
3
 * Copyright © Getnet. All rights reserved.
4
 *
5
 * @author    Bruno Elisei <[email protected]>
6
 * See LICENSE for license details.
7
 */
8
9
namespace Getnet\SubSellerMagento\Controller\Adminhtml\Subseller;
10
11
use Magento\Framework\App\Action\HttpGetActionInterface;
12
13
class Index extends \Getnet\SubSellerMagento\Controller\Adminhtml\Subseller implements HttpGetActionInterface
14
{
15
    /**
16
     * Show Main Grid.
17
     *
18
     * @return \Magento\Backend\Model\View\Result\Page
19
     */
20
    public function execute()
21
    {
22
        $resultPage = $this->initResultPage();
23
        $resultPage->addBreadcrumb(__('Manage Sub Sellers'), __('Manage Sub Sellers'));
24
        $resultPage->getConfig()->getTitle()->prepend(__('Sub Sellers'));
25
26
        return $resultPage;
27
    }
28
}
29