Skip to content
Advertisement

Tag: dependency-injection

Laravel 5 – Method injection

How method injection works in Laravel 5(I mean implementation), can I inject parameters in custom method, not just in controller actions? Answer 1) Read this articles to know more about method injection in laravel 5 http://mattstauffer.co/blog/laravel-5.0-method-injection https://laracasts.com/series/whats-new-in-laravel-5/episodes/2 2) Here is simple implementation of method injection you can also look at function in https://github.com/laravel/framework/blob/master/src/Illuminate/Container/Container.php file for more details 3) You can

Advertisement