Trevor Morris

Results 8 comments of Trevor Morris

If this fixes #60, then please could it be merged in? cc @nikolaos-spyratos, @alihen

I have managed to by-pass the problem with the following filter; ``` function wp_check_filetype_and_ext($wp_check_filetype_and_ext, $file, $filename, $mimes, $real_mime) { if (is_array($wp_check_filetype_and_ext) && array_key_exists('ext', $wp_check_filetype_and_ext) && array_key_exists('type', $wp_check_filetype_and_ext) && $wp_check_filetype_and_ext['ext'] ===...

The `fetchPostsMeta` method needs to be updated with check for `UserMeta`.

To get this working with WebPack 5, I had to do the following; ### Install imports-loader ```cli npm install imports-loader --save-dev ``` ### Updated WebPack configuration ```json { test: /jquery-mousewheel/,...

The issue doesn't seem to be with PHPStan 1.11, as I use this on another project and running PHPStan works correctly. However, there seems to be a problem with finding...

I am entirely unsure. Static Analysis shouldn't be *running* the code, so I don't know why this has become an issue, but with my investigation, it was introduced in the...

(I have upgraded to v2) which the upgrade.md file states; > * The `parse()` method will receive a file path and should return an array of attributes for the given...

I have managed to do what I needed using v1. By default the `key` is populated by the file name. This allows me to set the `getKeyName()` and routing works...