摘要:
上次实现了简单的依赖注入,但是有个问题,像laravel是可以实现构造函数依赖注入,但是上次实现的依赖注入不支持构造函数的依赖注入,所以今天把构造函数的依赖注入一并实现了。 跟上次一样,假设有一个名为user的model class User { public $table = 'users'; } 阅读全文
摘要:
突然好奇laravel的依赖注入是怎么实现的,翻看了下laravel的源码,发现在laravel在src/Illuminate/Routing/Route.php下的run方法中开始执行控制器方法 /** * Run the route action and return the response. 阅读全文