1 | <?php |
||
7 | trait Fill { |
||
8 | |||
9 | protected $definition = null, $error = false, $id = 0, $data = []; |
||
10 | |||
11 | # Fill entity with custom data |
||
12 | |||
13 | public function fill(array $data) { |
||
37 | |||
38 | # Get path interface |
||
39 | |||
40 | abstract protected function getPath(); |
||
41 | |||
42 | # Implementor interface |
||
43 | |||
44 | abstract protected function implement(); |
||
45 | } |
||
46 | } |
||
47 |