M. Vondano

Results 233 comments of M. Vondano

Did you adjust the default `tl_files` palette?

Ah sorry, I thought you wanted to use this e.g. for additional fields in `tl_files` (this would be `DC_Folder` then). It should show in `DC_Files` as well, though. Could you...

@zoglo I updated the PR. The difference with the file driver is that it doesn't have a the concept of a "row" - there's only one. This PR works around...

What is "not working anymore"?

Ah yes, we're missing to add the fields to the root fallback palette that was added in 4.9. In the meantime, you should be able to add this yourself as...

Make sure to run CodeCov with a version of PHPUnit that supports coverage for the used PHP version (e.g. **not** 8.5 with PHP8). This was the issue in our case.

Adding to the comment of @scyrma: For me this happens only triggered when I'm decorating services and inject the decorated service as a constructor argument. As soon there is a...

@Nyholm Would you be fine with adding a method to the `Filesystem` like so? ```php public function extraMetadata(string $path): array { if (!method_exists($this->adapter, 'extraMetadata')) { return []; } return $this->adapter->extraMetadata($this->pathNormalizer->normalizePath($path))->extraMetadata();...

> @m-vo make a PR Not if there is no intention for it to get merged?

Thanks for the comments @frankdejonge. We require quite a lot of bundles and our users do so as well. If we would just raise our requirements, it would make it...