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