added content to di part

This commit is contained in:
Patrick 2014-09-17 21:46:06 +02:00
parent 1919bffec9
commit 79cd1b51b9

View file

@ -8,4 +8,40 @@ My favorite injector is [Auryn](https://github.com/rdlowrey/Auryn), so install `
[Pimple](http://pimple.sensiolabs.org/), [Orno DI](https://github.com/orno/di), [PHP-DI](https://github.com/mnapoli/PHP-DI)
Create a new file called `Dependencies.php` in your `src/` folder. In there add the following content:
```
<?php
$injector = new \Auryn\Provider;
$injector->share('Http\CookieBuilder');
$injector->delegate('Http\CookieBuilder', function($environment){
$cookieBuilder = new \Http\CookieBuilder;
$cookieBuilder->setDefaultSecure($environment === 'production');
return $cookieBuilder;
});
$injector->alias('Http\Response', 'Http\HttpResponse');
$injector->share('Http\HttpRequest');
$injector->define('Http\HttpRequest', [
':get' => $_GET,
':post' => $_POST,
':cookies' => $_COOKIE,
':files' => $_FILES,
':server' => $_SERVER,
]);
$injector->alias('Http\Request', 'Http\HttpRequest');
$injector->share('Http\HttpResponse');
return $injector;
```
Make sure you understand what `alias`, `share` and `define` are doing before you continue. You can read about them in the [Auryn documentation](https://github.com/rdlowrey/Auryn).
You are sharing the HTTP objects because there would not be much point in adding content to one object and then returning another one. So by sharing it you always get the same instance.
The alias allows you to type hint the interface instead of the class name. This makes it easy to switch the implementation without having to go back and edit all your classes that use the old implementation.
to be continued...