Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| <?php | |
| namespace Barnacle; | |
| use Barnacle\Container; | |
| interface RegistrationInterface | |
| { | |
| /** | |
| * @param Container $c | |
| */ | |
| public function addToContainer(Container $c); | |
| /** | |
| * @return string | |
| */ | |
| function getEntityPath(): string; | |
| /** | |
| * @return bool | |
| */ | |
| function hasEntityPath(): bool; | |
| } |