This repository was archived by the owner on Sep 28, 2018. It is now read-only.
v0.2.1
tagged this
21 Nov 05:21
Before this changes you had to call a protected service like this:
```php
$results = $this['someFunc']('foo');
```
Now with this update we can call the protected service just as though
it was another method of the container. Like so:
```php
$results = $this->someFunc('foo');
```
> NOTE: I believe this was intended from day 1 however for
> what ever reason this functionality got forgotten.