Grid   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 13
wmc 1
lcom 1
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A execute() 0 5 1
1
<?php
2
3
namespace Jcowie\FeatureToggle\Controller\Adminhtml\Featuretoggle;
4
5
use Jcowie\FeatureToggle\Controller\Adminhtml\Manage;
6
7
class Grid extends Manage
8
{
9
    /**
10
     * Custom grid action
11
     *
12
     * @return \Magento\Framework\View\Result\Layout
13
     */
14
    public function execute()
15
    {
16
        $resultLayout = $this->resultLayoutFactory->create();
17
        return $resultLayout;
18
    }
19
}
20