AbstractComponentProvider   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 1
dl 0
loc 20
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file is part of Laravel Zero.
7
 *
8
 * (c) Nuno Maduro <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace LaravelZero\Framework\Components;
15
16
use Illuminate\Support\ServiceProvider;
17
18
/**
19
 * @internal
20
 */
21
abstract class AbstractComponentProvider extends ServiceProvider
22
{
23
    /**
24
     * Registers the component on the application.
25
     *
26
     * Should adapt the service to the console/cli context.
27
     *
28
     * @return void
29
     */
30
    public function register(): void
31
    {
32
        // ..
33
    }
34
35
    /**
36
     * Checks if the component is available.
37
     *
38
     * @return bool
39
     */
40
    abstract public function isAvailable(): bool;
41
}
42