Laravel - 无法运行工匠命令

时间:2016-07-18 14:48:13

标签: php laravel laravel-5

今天我从Laravel 5.4打开了一个旧项目(我认为),我想稍微编辑它,所以我把它全部打开但是当运行任何工匠命令时,我收到一个巨大的错误,写在控制台上(cmd )。

<?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/

$app = new Illuminate\Foundation\Application(
    realpath(__DIR__.'/../')
);

/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/

$app->singleton(
    Illuminate\Contracts\Http\Kernel::class,
    App\Http\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Console\Kernel::class,
    App\Console\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Debug\ExceptionHandler::class,
    App\Exceptions\Handler::class
);

/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/

return $app;
PHP Fatal error:  Uncaught Error: Call to a member function make() on integer in C:\Users\admin\Desktop\mywebsite\website\artisan:31
Stack trace:
#0 {main}
  thrown in C:\Users\admin\Desktop\mywebsite\website\artisan on line 31

看起来像是php文件的全部内容,然后是

下面的错误
PHP Fatal error:  Uncaught Error: Call to a member function make() on integer in C:\Users\admin\Desktop\mywebsite\website\artisan:31
    Stack trace:
    #0 {main}
      thrown in C:\Users\admin\Desktop\mywebsite\website\artisan on line 31

2 个答案:

答案 0 :(得分:1)

我只是遇到这种错误,然后我发现我的一些文件特别损坏了bootstrap / app.php,这就是为什么它会显示一些奇怪的字符。

答案 1 :(得分:0)

OP进入了php聊天室寻求帮助。经过一些调试后发现问题是由于缺少.env文件导致应用程序无法正确构建。

在OP的情况下,通过将_env重命名为.env并确保将APP_KEY设置为有效的长度和内容来解决问题。