📁 File Manager By @h0rn3t_sp1d3r
📂 Change Directory:
Go
/
/
opt
/
alt
/
php55
/
usr
/
share
/
pear
/
Symfony
/
Component
/
Form
/
Extension
/
DataCollector
/
Proxy
/
[ HOME ]
⬅️ [ PARENT DIR ]
📤 Upload
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\DataCollector\Proxy; use Symfony\Component\Form\Extension\DataCollector\FormDataCollectorInterface; use Symfony\Component\Form\FormTypeInterface; use Symfony\Component\Form\ResolvedFormTypeFactoryInterface; use Symfony\Component\Form\ResolvedFormTypeInterface; /** * Proxy that wraps resolved types into {@link ResolvedTypeDataCollectorProxy} * instances. * * @since 2.4 * @author Bernhard Schussek <bschussek@gmail.com> */ class ResolvedTypeFactoryDataCollectorProxy implements ResolvedFormTypeFactoryInterface { /** * @var ResolvedFormTypeFactoryInterface */ private $proxiedFactory; /** * @var FormDataCollectorInterface */ private $dataCollector; public function __construct(ResolvedFormTypeFactoryInterface $proxiedFactory, FormDataCollectorInterface $dataCollector) { $this->proxiedFactory = $proxiedFactory; $this->dataCollector = $dataCollector; } /** * {@inheritdoc} */ public function createResolvedType(FormTypeInterface $type, array $typeExtensions, ResolvedFormTypeInterface $parent = null) { return new ResolvedTypeDataCollectorProxy( $this->proxiedFactory->createResolvedType($type, $typeExtensions, $parent), $this->dataCollector ); } }
💾 Save
Name
Size (kB)
Modified
Year
Perms
Actions
📁 ..
-
2024-05-04 23:47:38
2024
Set
-
📄 ResolvedTypeDataCollectorProxy.php
3.94
2019-12-18 11:24:06
2019
Set
✏️ Edit
|
🗑️
|
⬇️
|
✏️
📄 ResolvedTypeFactoryDataCollectorProxy.php
1.54
2019-12-18 11:24:06
2019
Set
✏️ Edit
|
🗑️
|
⬇️
|
✏️