SlotInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
1
<?php /** @noinspection PhpDeprecationInspection */
2
3
/**
4
 * This software package is licensed under `AGPL-3.0-only, proprietary` license[s].
5
 *
6
 * @package maslosoft/signals
7
 * @license AGPL-3.0-only, proprietary
8
 *
9
 * @copyright Copyright (c) Peter Maselkowski <[email protected]>
10
 * @link https://maslosoft.com/signals/
11
 */
12
13
namespace Maslosoft\Signals\Interfaces;
14
15
use Maslosoft\Signals\ISignalSlot;
16
17
/**
18
 *
19
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
20
 */
21
interface SlotInterface extends ISignalSlot
0 ignored issues
show
Deprecated Code introduced by
The interface Maslosoft\Signals\ISignalSlot has been deprecated with message: since version number

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

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

Loading history...
22
{
23
	//put your code here
24
}
25