-
> IMPORTANT: If an injection definition is defined for a parameter covered by an implementation assignment, the definition takes precedence over the implementation.
I have a namespace aliased to a cl…
-
When you use an delegated instantiator: https://github.com/rdlowrey/Auryn#instantiation-delegates
Is it possible to reuse the $injector inside the function? So something like this:
``` php
$complexC…
-
The test classes and test method probably explain this adequately:
```
class BaseExecutableClass {
function foo() {
return 'This is the BaseExecutableClass';
}
}
class ExtendsExecuta…
-
Several examples show passing a new instance of Auryn\ReflectionPool into Injector constructor. However, that class does not seem to be defined anywhere in the library.
The Injector constructor itsel…
-
I used Auryn for the first time in a project. Since I have already used the DI/IoC concept in other langues (e.g. java) the question came up if Auryn supports something like lifecycles for the objects…
-
Any chance for a new tag soon. It seems the last stable release was back in Oct 2014 (unless I'm missing something). I've had some longer projects (months) which are going to be going stable soon an…
-
When you call Injector->execute on a function, and it requires a non-typehinted param which has not been defined, the error message is generated with the code:
```
$declaringClass = $param->getDeclar…
-
Travis also offers HHVM: http://docs.travis-ci.com/user/languages/php/
-
I don't like the title, but that was my 3rd try, so we'll go with it.
I have an interface, with an abstract class that implements the interface. Elsewhere, there is a concrete class which extends the…
-
Hey, I get that error when I had this code:
$injector->alias('Http\Response', 'Http\HttpResponse');
$injector->share('Http\HttpRequest');
$injector->define('Http\HttpRequest', [
':get' => $_GET,
…