jabysa /
Sms
| 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
|
|||
| 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 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths