Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Flow\Import; |
4 | |
5 | interface IImportObject { |
6 | /** |
7 | * Returns an opaque string that uniquely identifies this object. |
8 | * Should uniquely identify this particular object every time it is imported. |
9 | * |
10 | * @return string |
11 | */ |
12 | public function getObjectKey(); |
13 | } |