fix type in DI chapter
This commit is contained in:
parent
62cff766db
commit
0b1fa54d49
1 changed files with 1 additions and 2 deletions
|
@ -212,7 +212,7 @@ PHP provides us with the great Reflection Api that is capable of showing us, [wh
|
||||||
given class requires](https://www.php.net/manual/de/reflectionclass.getconstructor.php]. We could implement that
|
given class requires](https://www.php.net/manual/de/reflectionclass.getconstructor.php]. We could implement that
|
||||||
functionality ourselves, or just try to use a library that takes care of that for us.
|
functionality ourselves, or just try to use a library that takes care of that for us.
|
||||||
|
|
||||||
You can query the composer database to find all [libraries that implment the container interface](https://packagist.org/providers/psr/container-implementation).
|
You can query the composer database to find all [libraries that implement the container interface](https://packagist.org/providers/psr/container-implementation).
|
||||||
|
|
||||||
I choose the [PHP-DI](https://packagist.org/packages/php-di/php-di) container, as it is easy to configure and provides some very [powerfull features](https://php-di.org/#autowiring)
|
I choose the [PHP-DI](https://packagist.org/packages/php-di/php-di) container, as it is easy to configure and provides some very [powerfull features](https://php-di.org/#autowiring)
|
||||||
out of the box, and also solves the auto wiring problem.
|
out of the box, and also solves the auto wiring problem.
|
||||||
|
@ -223,7 +223,6 @@ automatically build.
|
||||||
```php
|
```php
|
||||||
<?php declare(strict_types=1);
|
<?php declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
$builder = new \DI\ContainerBuilder;
|
$builder = new \DI\ContainerBuilder;
|
||||||
|
|
||||||
$builder->addDefinitions([
|
$builder->addDefinitions([
|
||||||
|
|
Loading…
Reference in a new issue