Cache::_construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
namespace Firegento\DevDashboard\Block\Backend;
3
4
class Cache extends \Magento\Backend\Block\Cache
5
{
6
    /**
7
     * Class constructor
8
     *
9
     * @return void
10
     */
11
    protected function _construct()
12
    {
13
        $this->_controller = 'cache';
14
        $this->_headerText = (string) __('Cache Storage Management');
15
        \Magento\Backend\Block\Widget\Container::_construct();
16
    }
17
}
18