Laravel — ServiceProvider: Дайте мне ошибку 500

После использования ServiceProvider Laravel выдает ошибку 500 …
Если я удалю:

Я знаю, нет необходимости связывать, потому что нет DI, я испытываю …

Игровой контроллер :

namespace App\Http\Controllers\Game;

use App;
use App\Http\Controllers\Controller;

class GameController extends Controller
{
public function start(GameRepositoryInterface $gameRepository) {
return $gameRepository->getLastAdd();
}
}

GameServiceProvider:

namespace App\Providers\Game;

use Illuminate\Support\ServiceProvider;
use App\Http\Controllers\Game\StdGameRepository;
use App\Http\Controllers\Game\GameRepositoryInterface;

class GameServiceProvider extends ServiceProvider
{
protected $defer = true;

public function register() {
dd('ici');
$this->app->bind(StdGameRepository::class, function() {
return new StdGameRepository();
});

$this->app->bind(GameRepositoryInterface::class, StdGameRepository::class);
}

public function provides() {
return [GameRepositoryInterface::class];
}
}

GameRepositoryInterface:

namespace App\Http\Controllers\Game;

interface GameRepositoryInterface
{
public function getLastAdd();
}

StdGameRepository:

namespace App\Http\Controllers\Game;

class StdGameRepository implements GameRepositoryInterface
{
private $lastAdd = "Testing";

public function getLastAdd()
{
return $this->lastAdd;
}
}

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]