fastnorth/property-mapper

View on GitHub
src/FastNorth/PropertyMapper/Processor/Processor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace FastNorth\PropertyMapper\Processor;

use Symfony\Component\PropertyAccess\PropertyAccessorInterface;

/**
 * Processor
 *
 * Processes maps
 */
abstract class Processor
{
    /**
     * Property accessor
     *
     * @var PropertyAccessorInterface
     */
    protected $propertyAccess;

    /**
     * Constructor
     *
     * @var PropertyAccessorInterface $propertyAccess
     */
    public function __construct(PropertyAccessorInterface $propertyAccess)
    {
        $this->propertyAccess = $propertyAccess;
    }
}