| 1 | <?php |
||
| 23 | class MetaFactory implements MetaFactoryInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var Context |
||
| 27 | */ |
||
| 28 | protected $context; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * MetaFactory constructor. |
||
| 32 | * |
||
| 33 | * @param Context $context |
||
| 34 | */ |
||
| 35 | public function __construct(Context $context) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function create($value, array $configuration = null) |
||
| 51 | } |
||
| 52 |