Sms   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
3
4
namespace Jaby\Sms;
5
6
use Illuminate\Support\Facades\Facade;
7
use phpDocumentor\Reflection\Types\Integer;
0 ignored issues
show
Bug introduced by
The type phpDocumentor\Reflection\Types\Integer was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
8
9
/**
10
 * Class Sms
11
 * @package Store\Helpers\Sms
12
 * @method static Sms driver(String $driver)
13
 * @method static Sms pattern(String $pattern)
14
 * @method static Sms text(String $message)
15
 * @method static Sms from(Integer $from)
16
 * @method static Sms to(array $to)
17
 * @method static Sms data(array $data)
18
 * @method static Sms send()
19
 */
20
class Sms extends Facade
21
{
22
    public static function getFacadeAccessor()
23
    {
24
        return 'sms';
25
    }
26
}
27