【发布时间】:2017-04-28 07:34:16
【问题描述】:
拥有MVC系统,是在控制器中触发事件,还是在有依赖注入的服务中触发?
例如。
class MyController
{
$brainStorage->store($yellowBrain);
$EventDispatcher->dispatch(new BrainCreatedEvent($yellowBrain));
...
或者应该是触发事件的存储服务?
我更喜欢控制类是唯一知道域事件的类。
优缺点是什么?
【问题讨论】: