Passed
Push — master ( 1fa191...e3e193 )
by Vladimir
01:51
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
class FondBotApplicationServiceProvider extends ServiceProvider
10
{
11
    /**
12
     * Bootstrap any application services.
13
     *
14
     * @return void
15
     */
16
    public function boot(): void
17
    {
18
        FondBot::routes();
19
    }
20
21
    protected function intents(): void
22
    {
23
        FondBot::intentsIn(app_path('Intents'));
24
    }
25
}
26