码迷,mamicode.com
首页 > 移动开发 > 详细

每天laravel-20160722|Application-2

时间:2016-04-21 12:04:15      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:laravel

/**
 * Add a command to the console.
 *
 * @param  \Symfony\Component\Console\Command\Command  $command
 * @return \Symfony\Component\Console\Command\Command
 */
public function add(SymfonyCommand $command)
{
    if ($command instanceof Command) {// check the command instance is right,
        $command->setLaravel($this->laravel);// command instance to run the set function
    }

    return $this->addToParent($command);// use this function to add to Parent frame
}// add a command to the console.

/**
 * Add the command to the parent instance.
 *
 * @param  \Symfony\Component\Console\Command\Command  $command
 * @return \Symfony\Component\Console\Command\Command
 */
protected function addToParent(SymfonyCommand $command)
{
    return parent::add($command);// this a easy way or type
}// Add to the parent // use a wrap to make the function to easy know! or understand

/**
 * Add a command, resolving through the application.
 *
 * @param  string  $command
 * @return \Symfony\Component\Console\Command\Command
 */
public function resolve($command)
{
    return $this->add($this->laravel->make($command));// a add wrap, like mysql function query and thinkphp function find. yeah
}// add a command resolving through the application


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

每天laravel-20160722|Application-2

标签:laravel

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

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