Passed
Push — master ( c9415f...63dfa1 )
by Vladimir
02:04
created

FondBotApplicationServiceProvider::intents()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace FondBot;
6
7
use Illuminate\Support\ServiceProvider;
8
9
abstract class FondBotApplicationServiceProvider extends ServiceProvider
10
{
11
    /**
12
     * Bootstrap any application services.
13
     *
14
     * @return void
15
     */
16
    public function boot(): void
17
    {
18
        $this->intents();
19
    }
20
21
    /**
22
     * Register intents.
23
     */
24
    abstract protected function intents(): void;
25
}
26