Test Failed
Push — master ( 3e81ac...787e81 )
by Iman
02:36
created

HeyMan   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1
1
<?php
2
3
namespace Imanghafoori\HeyMan\Facades;
4
5
use Illuminate\Database\Eloquent\Model;
6
use Illuminate\Support\Facades\Facade;
7
use Imanghafoori\HeyMan\YouShouldHave;
8
9
/**
10
 * Class HeyMan
11
 *
12
 * @method static YouShouldHave whenYouFetch(array|Model $model)
13
 * @method static YouShouldHave whenYouCreate(array|Model $model)
14
 * @method static YouShouldHave whenYouUpdate(array|Model $model)
15
 * @method static YouShouldHave whenYouSave(array|Model $model)
16
 * @method static YouShouldHave whenYouDelete(array|Model $model)
17
 * @method static YouShouldHave whenYouVisitUrl(array|sting $url)
18
 * @method static YouShouldHave whenYouVisitRoute(array|sting $routeName)
19
 * @method static YouShouldHave whenYouCallAction(array|sting $action)
20
 * @method static YouShouldHave whenYouViewBlade(array|sting $view)
21
 * @method static YouShouldHave whenEventHappens(array|sting $event)
22
 *
23
 *
24
 * @see \Imanghafoori\HeyMan\HeyMan
25
 */
26
class HeyMan extends Facade
27
{
28
    public static function getFacadeAccessor()
29
    {
30
        return \Imanghafoori\HeyMan\HeyMan::class;
31
    }
32
}