[李景山php]每天laravel-20160901|Dispatcher-1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[李景山php]每天laravel-20160901|Dispatcher-1相关的知识,希望对你有一定的参考价值。
namespace Illuminate\Events; use Exception; use ReflectionClass; use Illuminate\Support\Str; use Illuminate\Container\Container; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow; use Illuminate\Contracts\Events\Dispatcher as DispatcherContract; use Illuminate\Contracts\Container\Container as ContainerContract; // use namespace class Dispatcher implements DispatcherContract {// a Dispatcher implements Dispatcher Contract /** * The IoC container instance. * * @var \Illuminate\Contracts\Container\Container */ protected $container;// The Ioc container instance. /** * The registered event listeners. * * @var array */ protected $listeners = [];// listeners be registered /** * The wildcard listeners. * * @var array */ protected $wildcards = [];// The wildcard listeners. like store /** * The sorted event listeners. * * @var array */ protected $sorted = [];// The sorted event listeners. /** * The event firing stack. * * @var array */ protected $firing = [];//The event firing stack. /** * The queue resolver instance. * * @var callable */ protected $queueResolver;// The queue resolver instance. // at last ,we find to instance ,some listeners /** * Create a new event dispatcher instance. * * @param \Illuminate\Contracts\Container\Container|null $container * @return void */ // dispathcer is use to make it like you want public function __construct(ContainerContract $container = null) { $this->container = $container ?: new Container; }// ContainerContract is $contanier
本文出自 “专注php” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1789766
以上是关于[李景山php]每天laravel-20160901|Dispatcher-1的主要内容,如果未能解决你的问题,请参考以下文章
[李景山php]每天laravel-20161028|Translator.php
[李景山php]每天laravel-20161107|PhpEngine.php
[李景山php]每天laravel-20161106|EngineResolver.php
[李景山php]每天laravel-20161108|ShareErrorsFromSession.php