Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function __construct($entity, array $keys, $container = null) |
||
34 | { |
||
35 | $this->entity = $this->normalizeNamespace($entity); |
||
36 | $this->container = $this->containerName($container); |
||
37 | |||
38 | $this->assertKeys($keys); |
||
39 | |||
40 | $this->assignKeys($keys, $this->keys); |
||
41 | $this->in = array_keys($this->keys); |
||
42 | $this->out = array_values($this->keys); |
||
43 | } |
||
44 | } |
||
45 |