VtuDotNG::getFacadeAccessor()   A
last analyzed

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
namespace HenryEjemuta\LaravelVtuDotNG\Facades;
4
5
use HenryEjemuta\LaravelVtuDotNG\Classes\VtuDotNGResponse;
6
use Illuminate\Support\Facades\Facade;
7
8
/**
9
 * @method static VtuDotNGResponse getWalletBalance()
10
 * @method static VtuDotNGResponse purchaseAirtime(string $network, int $amount, $phoneNumber)
11
 * @method static VtuDotNGResponse purchaseDataBundle(string $network, string $plan, string $phone)
12
 * @method static VtuDotNGResponse verifyCableSmartCardNumber(string $cableTvType, string $smartCardNumber)
13
 * @method static VtuDotNGResponse purchaseCableTvPlan(string $cableTvType, string $smartCardNumber, string $plan, string $customerPhoneNumber)
14
 * @method static VtuDotNGResponse verifyMeterNumber(string $disco, string $meterNumber, string $meterType)
15
 * @method static VtuDotNGResponse purchaseElectricity(string $disco, string $meterNumber, string $meterType, $amount, string $customerPhoneNumber)
16
 *
17
 * For respective method implementation:
18
 * @see \HenryEjemuta\LaravelVtuDotNG\VtuDotNG
19
 */
20
class VtuDotNG 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 'vtung';
30
    }
31
}
32