Passed
Push — dependabot/npm_and_yarn/string... ( b56eb5...bc569b )
by
unknown
45:46 queued 33s
created

MacrosServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 13
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0
wmc 2
1
<?php
2
3
namespace Thinktomorrow\Chief\App\Providers;
4
5
use Illuminate\Database\Query\Builder;
6
use Illuminate\Support\ServiceProvider;
7
8
class MacrosServiceProvider extends ServiceProvider
9
{
10
    protected $defer = false;
11
12
    public function boot()
13
    {
14
//        Builder::macro('ignoreCollection', function(){
15
//            return $this;
16
//        });
17
    }
18
19
    public function register()
20
    {
21
    }
22
}
23