Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
|
| <?php | |
| declare(strict_types = 1); | |
| namespace Siesta\Database\MetaData; | |
| /** | |
| * @author Gregor Müller | |
| */ | |
| interface ConstraintMappingMetaData | |
| { | |
| /** | |
| * @return string | |
| */ | |
| public function getForeignColumn() : string; | |
| /** | |
| * @return string | |
| */ | |
| public function getLocalColumn() : string; | |
| } |