Laravel 5 - 如何从 Artisan 命令 运行 控制器方法?

Laravel 5 - how to run a Controller method from an Artisan Command?

我需要每十分钟从我的控制器向 运行 发送一些代码。使用 SchedulerCommands 就足够简单了。但。我创建了一个 Command,用 Laravel Scheduler 注册了它(在 Kernel.php 中),现在我无法实例化 Controller。我知道解决这个问题的方法是错误的,但我只需要快速测试一下。请注意,有没有一种方法可以做到这一点?谢谢。

更新 #1:

Command:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Http\Controllers\StatsController;


class UpdateProfiles extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'update-profiles';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Updates profiles in database.';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        StatsController::updateStats('<theProfileName>');
    }
}

updateStats() StatsController.php

中的方法
public static function updateStats($theProfileName) { 
   // the body
}

这个returns一个FatalErrorException:

[Symfony\Component\Debug\Exception\FatalErrorException] 
syntax error, unexpected 'if' (T_IF)

更新#2:

原来我在 updateStats() 方法中有错字,但@alexey-mezenin 的回答非常有效!将 Controller 导入 Command:

也足够了
use App\Http\Controllers\StatsController;

然后像往常一样初始化它:

public function handle() {
   $statControl        = new StatsController;
   $statControl->updateStats('<theProfileName>');
}

尝试在您的命令代码中使用 use Full\Path\To\Your\Controller; 并静态使用方法:

public static function someStaticMethod()
{
    return 'Hello';
}

在您的命令代码中:

echo myClass::someStaticMethod();