Issues (6)

.phpstorm.meta.php (1 issue)

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,
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