for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is a part of Sculpin.
*
* (c) Dragonfly Development Inc.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symplify\PHP7_Sculpin\Contrib\ProxySourceCollection;
use Symplify\PHP7_Sculpin\Core\Source\SourceInterface;
final class SimpleProxySourceItemFactory implements ProxySourceItemFactoryInterface
{
private $reflectionClass;
public function __construct($class = null)
$this->reflectionClass = new \ReflectionClass(
$class ?: 'Sculpin\Contrib\ProxySourceCollection\ProxySourceItem'
);
}
public function createProxySourceItem(SourceInterface $source)
return $this->reflectionClass->newInstance($source);