오늘 내가 얻는 PHP Intelephense의 최신 업데이트 이후, 인텔 텔레 펜스는 내 경로 (및 다른 클래스)에 대해 정의되지 않은 기호에 대한 오류를 계속 표시합니다. 이전과 같은 오류는 없으며 귀찮게합니다.
다음은 오류 스크린 샷입니다.
그리고 이것은 내 코드입니다.
Route::group(['prefix' => 'user', 'namespace' => 'Membership', 'name' => 'user.'], function () {
Route::get('profile', 'ProfileController@show')->name('profile.show');
Route::patch('profile', 'ProfileController@update')->name('profile.update');
Route::patch('change-password', 'ChangePasswordController@change')->name('change-password');
Route::get('role', 'ProfileController@getRole')->name('profile.role');
Route::get('summary', 'SummaryController@show')->name('summary');
Route::get('reserved', 'AuctionController@reservedAuction')->name('reserved');
});
실제로이 코드에는 오류가 없지만 정보가 계속 오류를 표시하므로이 문제를 해결할 수있는 방법이 있습니까?
api.php
아래 @ user12483351의 답변을 참조하십시오. 그것은 나를 위해 그것을 고쳤다. 나는 Intelephese 1.3.6에 있습니다.