data mapper POC
[m6w6/pq-gateway] / lib / pq / Mapper / RefPropertyInterface.php
1 <?php
2
3 namespace pq\Mapper;
4
5 interface RefPropertyInterface extends PropertyInterface
6 {
7 /**
8 * @param string $class
9 */
10 function to($class);
11
12 /**
13 * @param string $class
14 * @return bool
15 */
16 function references($class);
17
18 /**
19 * @param string $ref
20 */
21 function by($ref);
22
23 /**
24 * @param string $ref
25 * @return bool
26 */
27 function on($ref);
28 }