Completed
Push — master ( fe4432...70332f )
by Freek
01:25
created

SearchServiceProvider::boot()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
namespace Spatie\Searchable;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class SearchServiceProvider extends ServiceProvider
8
{
9
    public function register()
10
    {
11
        $this->app->singleton(Search::class);
12
    }
13
}
14