ComponentTagCompiler::guessClassName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 1
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
nc 1
nop 1
1
<?php declare(strict_types=1);
2
3
namespace Netflie\Componentes;
4
5
class ComponentTagCompiler extends \Illuminate\View\Compilers\ComponentTagCompiler
6
{
7
    /**
8
     * Guess the class name for the given component.
9
     *
10
     * @param  string  $component
11
     * @return string
12
     */
13
    public function guessClassName(string $component)
14
    {
15
        // TO-DO
16
        return null;
17
    }
18
}