area17 / blast

Storybook for Laravel Blade 🚀
https://dev.to/area17/getting-started-with-blast-storybook-for-laravel-blade-c5c
Apache License 2.0
268 stars 39 forks source link

Fix deprecation notice in PHP 8.1 #54

Closed RVxLab closed 2 years ago

RVxLab commented 2 years ago

This PR fixes a deprecation notice in PHP 8.1 caused by calling a trait's static method directly.

Details regarding the issue can be found in #52

With this change the original trait will be marked as deprecated and will delegate the call to a new class. This prevents a BC break and gives developers time to migrate to using this class instead.

mrtimbrook commented 2 years ago

Thanks!