Paymongo   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
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