Target [App\YourDirectory] is not instantiable while building 오류

hannni·2023년 2월 22일
0

Laravel

목록 보기
9/16

✏️ 오류 내용

Target [App\YourDirectory] is not instantiable while building

로컬에서 테스트 코드를 실행했을 때, 발생된 에러입니다.

🔎 원인

  • 경험한 해당 에러에서의 문제점은 bind의 실수였습니다.
  • 또는 use 선언 부분, 관련할 것 같은 파일의 namespace 부분, 파일명과 class 부분이 일치하고 있는지, bind의 방법은 잘못되어 있지 않은지를 다시 한번 확인해봅니다.

저의 경우 app/Providers/AppServiceProvider.php의 bind의 기재에 잘못이 있었습니다.

📖 해결방법

$this->app->bind(
\App\YourDirectory\YourRepositoryInterface::class,
\App\YourDirectory\YourRepository::class,
);`

파일에 bind를 추가 및 수정해줍니다.

0개의 댓글