Issues (97)

.phpstorm.meta.php (2 issues)

Labels
Severity
1
<?php
2
3
namespace PHPSTORM_META {
4
5
    use Bavix\Wallet\Interfaces\Mathable;
6
    use Bavix\Wallet\Interfaces\Rateable;
7
    use Bavix\Wallet\Interfaces\Storable;
8
    use Bavix\Wallet\Models\Transaction;
9
    use Bavix\Wallet\Models\Transfer;
10
    use Bavix\Wallet\Models\Wallet;
11
    use Bavix\Wallet\Objects\Bring;
12
    use Bavix\Wallet\Objects\Cart;
13
    use Bavix\Wallet\Objects\EmptyLock;
14
    use Bavix\Wallet\Objects\Operation;
15
    use Bavix\Wallet\Services\CommonService;
16
    use Bavix\Wallet\Services\ExchangeService;
17
    use Bavix\Wallet\Services\WalletService;
18
19
    override(\app(0), map([
0 ignored issues
show
The function override was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

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

19
    /** @scrutinizer ignore-call */ 
20
    override(\app(0), map([
Loading history...
The function map was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

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

19
    override(\app(0), /** @scrutinizer ignore-call */ map([
Loading history...
20
        Cart::class => Cart::class,
21
        Bring::class => Bring::class,
22
        Operation::class => Operation::class,
23
        EmptyLock::class => EmptyLock::class,
24
        ExchangeService::class => ExchangeService::class,
25
        CommonService::class => CommonService::class,
26
        WalletService::class => WalletService::class,
27
        Wallet::class => Wallet::class,
28
        Transfer::class => Transfer::class,
29
        Transaction::class => Transaction::class,
30
        Mathable::class => Mathable::class,
31
        Rateable::class => Rateable::class,
32
        Storable::class => Storable::class,
33
    ]));
34
35
}
36