首頁 > 後端開發 > php教程 > [李景山php]每天laravel-20160901|Dispatcher-1

[李景山php]每天laravel-20160901|Dispatcher-1

WBOY
發布: 2016-07-28 08:30:19
原創
949 人瀏覽過

<code>
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;
<span>// use namespace</span>
class Dispatcher implements DispatcherContract
{<span>// a Dispatcher implements Dispatcher Contract</span><span>/**
     * The IoC container instance.
     *
     *<span> @var</span> \Illuminate\Contracts\Container\Container
     */</span><span>protected</span> $container;<span>// The Ioc container instance.</span><span>/**
     * The registered event listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $listeners = [];<span>// listeners be registered</span><span>/**
     * The wildcard listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $wildcards = [];<span>// The wildcard listeners. like store</span><span>/**
     * The sorted event listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $sorted = [];<span>// The sorted event listeners.</span><span>/**
     * The event firing stack.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $firing = [];<span>//The event firing stack.</span><span>/**
     * The queue resolver instance.
     *
     *<span> @var</span> callable
     */</span><span>protected</span> $queueResolver;<span>// The queue resolver instance.</span><span>// at last ,we find to instance ,some listeners</span><span>/**
     * Create a new event dispatcher instance.
     *
     *<span> @param</span>  \Illuminate\Contracts\Container\Container|null  $container
     *<span> @return</span> void
     */</span><span>// dispathcer is use to make it like you want</span><span>public</span> function <span>__construct</span>(ContainerContract $container = <span>null</span>)
    {
        $<span>this</span>->container = $container ?: <span>new</span> Container;
    }<span>// ContainerContract is $contanier</span></code>
登入後複製
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介紹了 [李景山php]每天laravel-20160901|Dispatcher-1,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板