1 | <?php |
||
10 | abstract class AbstractWrapper |
||
11 | { |
||
12 | /** |
||
13 | * Calls the matching mapping callable for each property. |
||
14 | * |
||
15 | * @param array $properties |
||
16 | * @param array $mappings |
||
17 | * @param string|null $column |
||
18 | * @throws \RuntimeException |
||
19 | */ |
||
20 | protected function setProperties(array $properties, array $mappings, string $column = null) |
||
53 | } |
||
54 |