cakephp / authentication

Authentication plugin for CakePHP. Can also be used in PSR7 based applications.
MIT License
115 stars 100 forks source link

2.x => 3.x merge and fix tests #614

Closed LordSimal closed 1 year ago

LordSimal commented 1 year ago

@ADmad I'd need your help with this named argument finder change. How do we handle this in the OrmResolver?

ADmad commented 1 year ago

@ADmad I'd need your help with this named argument finder change. How do we handle this in the OrmResolver?

Just changing the following line from $query->find($finder, $options); to $query->find($finder, ...$options); should suffice.

ADmad commented 1 year ago

I took care of the finder changes.