Mark Story
Mark Story
@bradmcnaughton You shouldn't need to patch cakephp to add custom types. There are public APIs for all of that.
The issue with hasErrors/getErrors has been fixed in #17333
I picked out the relevant changes into 87a8e1f09926e24fe9736119273f969cb24449df and added tests in 17c40ee2275341058d22ac383338a5375e36d463
I don't think that is possible today. I've personally never used plugins + prefixes + app override templates, and I don't recall any issues about this in the past. The...
Thank you for clarifying the current expected order. It is helpful having all of the context for an issue in one place. My concern with changing the template ordering is...
Would be good to have a test covering this scenario so that we don't get regressions in the future.
> Callback for inverted control Would this callback be registered with the helper as a configuration option? It seems awkward to need to provide a callback to each block of...
> This adds two bearer tokens because configRequest() uses array_merge_recursive(). Adding a $replace bool argument that defaults to false but uses array_replace_recursive() if true would be a nice option here...
> It is cleaner than working directly with an underscored property, but still requires rebuilding the entire request. That's fair. Would having a method that does the replacement work instead?...
> Would you say this method should clear the request and then add? Or should it do an array_replace_recursive? A recursive replace is likely the most ergonomic solution. It emulates...