Passed
Push — feature/lg ( dc598a...fe8da4 )
by Richard
04:27
created

LayoutPublishCommand::updateRoutes()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 9
c 2
b 0
f 0
dl 0
loc 17
rs 9.9666
cc 3
nc 2
nop 0
1
<?php
2
3
namespace PWWEB\Artomator\Commands\Publish;
4
5
use InfyOm\Generator\Commands\Publish\LayoutPublishCommand as Base;
6
7
class LayoutPublishCommand extends Base
8
{
9
    /**
10
     * The console command name.
11
     *
12
     * @var string
13
     */
14
    protected $name = 'artomator.publish:layout';
15
}
16