Completed
Push — master ( 9bce71...73ee53 )
by Hannes
03:00 queued 02:02
created

src/IdInterface.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace byrokrat\id;
4
5
/**
6
 * The base id interface
7
 */
8
interface IdInterface extends Id
1 ignored issue
show
Deprecated Code introduced by
The interface byrokrat\id\Id has been deprecated with message: Will be removed in version 2. Use IdInterface instead.

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...
9
{
10
}
11