GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 1295d8...cc3baf )
by Aden
05:53
created

FlareModuleProvider::boot()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace LaravelFlare\Flare;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class FlareModuleProvider extends ServiceProvider
8
{
9
    /**
10
     * Flare
11
     * 
12
     * @var \LaravelFlare\Flare\Flare
13
     */
14
    protected $flare;
15
16
    /**
17
     * Create a new service provider instance.
18
     *
19
     * @param  \Illuminate\Contracts\Foundation\Application  $app
20
     * @return void
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
21
     */
22
    public function __construct($app)
23
    {
24
        parent::__construct($app);
25
        
26
        $this->flare = $this->app->make('flare');
27
    }
28
    
29
    /**
30
     * Perform post-registration booting of services.
31
     */
32
    public function boot()
33
    {
34
    }
35
36
    /**
37
     * Register any package services.
38
     */
39
    public function register()
40
    {
41
        
42
    }
43
}
44