Closed bakerkretzmar closed 3 years ago
@Nielsvanpach could you take a look at this, I think it's a duplicate for a previous issue.
I can confirm this issue happened to me while in v1.30.0
, and fixed after composer update
to v1.30.3
.. Thanks!
Description
With
spatie/laravel-ray
installed, callingray('Date')
ordump('Date')
causes a TypeError:Versions
Ray version: N/A, bug is reproducible without the Ray app running
spatie/ray
package version: 1.30.2spatie/laravel-ray
package version: 1.26.1PHP version: 8.0.10 Laravel version: 8.63.0
Desktop: M1 mac mini with macOS 11.6 (Big Sur)
Steps to reproduce
laravel new app && cd app
composer require spatie/laravel-ray
php artisan tinker
ray('date')
Expected behaviour
I would expect
ray('date')
anddump('date')
to both dump the string "date".