| 1 | <?php |
||
| 7 | class MappingConfigurationContext |
||
| 8 | { |
||
| 9 | private $engine; |
||
| 10 | |||
| 11 | public function __construct(Engine $engine) |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Creates a TypeMap for the source's type and destination's type. |
||
| 18 | * |
||
| 19 | * @param string $sourceType Source type |
||
| 20 | * @param string $destinationType Destination type |
||
| 21 | * @throws ClassNotFoundException |
||
| 22 | * @return MappingFluentSyntax |
||
| 23 | */ |
||
| 24 | public function createMap($sourceType, $destinationType) |
||
| 28 | } |
||
| 29 |