Issues (2)

src/Facade/RedisFacadeInterface.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 *  This file is part of the Micro framework package.
7
 *
8
 *  (c) Stanislau Komar <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace Micro\Plugin\Redis\Facade;
15
16
use Micro\Plugin\Redis\Business\Redis\RedisManagerInterface;
17
18
interface RedisFacadeInterface extends RedisManagerInterface, \Micro\Plugin\Redis\RedisFacadeInterface
0 ignored issues
show
Deprecated Code introduced by
The interface Micro\Plugin\Redis\RedisFacadeInterface has been deprecated. ( Ignorable by Annotation )

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

18
interface RedisFacadeInterface extends RedisManagerInterface, /** @scrutinizer ignore-deprecated */ \Micro\Plugin\Redis\RedisFacadeInterface

This interface has been deprecated. The supplier of the interface has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.

Loading history...
19
{
20
}
21