* initial commit
This commit is contained in:
15
src/App/Service/BuilderFactory.php
Normal file
15
src/App/Service/BuilderFactory.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Service;
|
||||
|
||||
use Interop\Container\ContainerInterface;
|
||||
|
||||
class BuilderFactory
|
||||
{
|
||||
public function __invoke(ContainerInterface $container): Builder
|
||||
{
|
||||
return new Builder();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user