PHP code example of quillstack / di

1. Go to this page and download the library: Download quillstack/di library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

quillstack / di example snippets




use Quillstack\DI\Container;

roller = $container->get(ExampleController::class);



class ExampleController
{
    private $example = 3;
}

$container = new Container([
    LoggerInterface::class => Logger::class,
]);
$controller = $container->get(ExampleController::class);



class ExampleController
{
    public function __construct(
        private LoggerInterface $logger
    ) {
    }
}

$container = new Container([
    Database::class => [
        'hostname' => 'localhost',
    ],
]);
$controller = $container->get(ExampleController::class);
t


class Database
{
    public function __construct(
        private string $hostname
    ) {
    }
}



class CreateUserRequest implements RequestInterface
{
}



use Quillstack\DI\CustomFactoryInterface;

class RequestClassFactory implements CustomFactoryInterface
{
    /**
     * {@inheritDoc}
     */
    public function create(string $id): object
    {
        $factory = $this->container->get(GivenRequestFromGlobalsFactory::class);

        return $factory->createGivenServerRequest($id);
    }
}

$container = new Container([
    RequestInterface::class => RequestClassFactory::class,
]);
$controller = $container->get(ExampleController::class);

$logger = new Logger('name');
$logger->pushHandler(new StreamHandler('var/app.log'););

$container = new Container([
    LoggerInterface::class => $logger,
]);