EcuadorIdentification::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
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Luilliarcec\LaravelEcuadorIdentification\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
use Luilliarcec\LaravelEcuadorIdentification\Validations\EcuadorIdentification as Identification;
7
8
/**
9
 * @method static string|null validateFinalConsumer(string $identification_number)
10
 * @method static string|null validatePersonalIdentification(string $identification_number)
11
 * @method static string|null validateNaturalRuc(string $identification_number)
12
 * @method static string|null validatePublicRuc(string $identification_number)
13
 * @method static string|null validatePrivateRuc(string $identification_number)
14
 * @method static string|null validateRuc(string $identification_number)
15
 * @method static string|null validateIsNaturalPersons(string $identification_number)
16
 * @method static string|null validateIsJuridicalPersons(string $identification_number)
17
 * @method static string|null validateAllTypeIdentification(string $identification_number)
18
 * @method static string getError()
19
 * @see Identification;
20
 */
21
class EcuadorIdentification extends Facade
22
{
23
    /**
24
     * Get the registered name of the component.
25
     *
26
     * @return string
27
     */
28
    protected static function getFacadeAccessor()
29
    {
30
        return Identification::class;
31
    }
32
}
33