码迷,mamicode.com
首页 > 其他好文 > 详细

每天laravel-20160720|ScheduleServiceProvid

时间:2016-04-20 11:43:52      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:laravel

<?php

namespace Illuminate\Console;

use Illuminate\Support\ServiceProvider;
// my name space
class ScheduleServiceProvider extends ServiceProvider
{// ScheduleService Provider extends ServiceProvider
    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = true;// deferred is delay for the provider
   // indicates if loading of the provider is deferred.

    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $this->commands(‘Illuminate\Console\Scheduling\ScheduleRunCommand‘);
    }// Register the service provider.
   // use a api register function ,that is the commands

    /**
     * Get the services provided by the provider.
     *
     * @return array
     */
    public function provides()
    {
        return [
            ‘Illuminate\Console\Scheduling\ScheduleRunCommand‘,
        ];
    }// Get the services provided by the provider.
   // Get a provides instance
}


本文出自 “专注php” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1765635

每天laravel-20160720|ScheduleServiceProvid

标签:laravel

原文地址:http://jingshanls.blog.51cto.com/3357095/1765635

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!