fastnorth/property-mapper

View on GitHub
src/FastNorth/PropertyMapper/Map/EmbeddedInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace FastNorth\PropertyMapper\Map;

use FastNorth\PropertyMapper\FactoryInterface;
use FastNorth\PropertyMapper\MapInterface;

/**
 * EmbeddedInterface
 *
 * Maps embedded entities
 */
interface EmbeddedInterface
{
    /**
     * Get the to property
     *
     * @return string
     */
    public function getTo();

    /**
     * Get the map
     *
     * @return MapInterface
     */
    public function getMap();

    /**
     * Get the object factory
     *
     * @return FactoryInterface
     */
    public function getFactory();
}