Issues (6)

.phpstorm.meta.php (2 issues)

1
<?php
2
3
namespace PHPSTORM_META {
4
5
    /** @noinspection PhpIllegalArrayKeyTypeInspection */
6
    /** @noinspection PhpUnusedLocalVariableInspection */
7
    $STATIC_METHOD_TYPES = [
8
      \Omnipay\Omnipay::create('') => [
9
        'Pelecard' instanceof \Omnipay\Pelecard\Gateway,
0 ignored issues
show
The type Omnipay\Pelecard\Gateway 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...
10
      ],
11
      \Omnipay\Common\GatewayFactory::create('') => [
0 ignored issues
show
Bug Best Practice introduced by
The method Omnipay\Common\GatewayFactory::create() is not static, but was called statically. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

11
      \Omnipay\Common\GatewayFactory::/** @scrutinizer ignore-call */ 
12
                                      create('') => [
Loading history...
12
        'Pelecard' instanceof \Omnipay\Pelecard\Gateway,
13
      ],
14
    ];
15
}
16