Issues (15)

src/Sms.php (1 issue)

Labels
Severity
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
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