Completed
Push β€” master ( 82fe42...a9f1c5 )
by reallyli
11s
created

PusherService::alias()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: uniqueway
5
 * Date: 2018/11/20
6
 * Time: 上午11:38.
7
 */
8
9
namespace Reallyli\LaravelUnicomponent\Components\Pusher;
10
11
use Reallyli\LaravelUnicomponent\UnicomponentServiceInterface;
12
13
class PusherService implements UnicomponentServiceInterface
14
{
15
    public function alias()
16
    {
17
        return 'pusher';
18
    }
19
20
    public function provider()
21
    {
22
        return Pusher::class;
23
    }
24
}
25