I noticed while developing an internal package where I pre-configure Passport from the boot method of a service provider that there were some inconsistencies.
In some places config('passport.client_uuids') is used while in other places Passport::clientUuids() is used.
Because I only used Passport::setClientUuids(true) this resulted in an error due to the uuid not being set in the creating event.
I noticed while developing an internal package where I pre-configure Passport from the
boot
method of a service provider that there were some inconsistencies.In some places
config('passport.client_uuids')
is used while in other placesPassport::clientUuids()
is used.Because I only used
Passport::setClientUuids(true)
this resulted in an error due to the uuid not being set in the creating event.