You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fire Method
Likelihood Of Impact: Low
The fire method (which was deprecated in Laravel 5.4) of the Illuminate\Events\Dispatcher class [has been removed](https://github.com/laravel/framework/pull/26392). You should use the dispatch method instead.
xharpenParksuhyeon
changed the title
[laravel/5.8] Remove fire method
[laravel/5.8] Use dispatch method instead of fire method.
Jan 19, 2023
xharpenParksuhyeon
changed the title
[laravel/5.8] Use dispatch method instead of fire method.
Use dispatch method instead of fire method.
Jan 19, 2023
* #348 Primary Key로 문자열을 사용하는 모델에 keyType 프로퍼티 추가
* #347 instance_route('slug', ['slug' => '']) 라우터 파라미터 값에 '' 사용 시 오류 발생
* #346 Use dispatch method instead of fire method.
https://laravel.com/docs/5.8/upgrade#events
Event::fire Method가 삭제되고 Event::dispatch 메소드를 사용되도록 라라벨 코어가 수정되었습니다.
라라벨 5.5 버전에도 Event::dispatch 메소드는 지원되고 있는 걸 확인했습니다.
그래서
fire
메소드를 사용하고 있는 부분을dispatch
로 변경해 해결했습니다.아래 코드는 라라벨 5.5 쪽에 작성되어 있는 코드 중 일부 입니다.
https://laravel.com/api/5.5/Illuminate/Events/Dispatcher.html
The text was updated successfully, but these errors were encountered: