Paymongo::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Luigel\Paymongo\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * @method static \Luigel\Paymongo\Paymongo payment()
9
 * @method static \Luigel\Paymongo\Paymongo paymentIntent()
10
 * @method static \Luigel\Paymongo\Paymongo source()
11
 * @method static \Luigel\Paymongo\Paymongo webhook()
12
 * @method static \Luigel\Paymongo\Paymongo paymentMethod()
13
 * @method static \Luigel\Paymongo\Paymongo token() @deprecated 1.2.0
14
 * @method static mixed create(array $payload)
15
 * @method static mixed find(string $id)
16
 * @method static mixed all()
17
 * @method static mixed enable()
18
 * @method static mixed disable()
19
 */
20
class Paymongo extends Facade
21
{
22
    /**
23
     * Get the registered name of the component.
24
     *
25
     * @return string
26
     */
27
    protected static function getFacadeAccessor()
28
    {
29
        return 'paymongo';
30
    }
31
}
32