Marc Henry Schultz

Results 366 issues of Marc Henry Schultz

Scripts::executeCommand has currently an odd, i suppose historically evolved api https://github.com/neos/flow-development-collection/blob/1531a8125ad41e62324c7a85e440c14c1cb768ac/Neos.Flow/Classes/Core/Booting/Scripts.php#L682 1. its hard to get the actual output of the command, currently one needs to `ob_get_clean();` which seems pretty...

9.0

> We should probably just deprecate (or even remove) QueryInterface? > > Although I know the ES (elastic search) implementation uses it _Originally posted by @kitsunet in https://github.com/neos/flow-development-collection/issues/3276#issuecomment-1909043984_ @kdambekalns responded:...

In https://github.com/neos/flow-development-collection/pull/3278 i was forced to adjust the types in the `TextIterator` and it came up if we even follow the correct specification or if this `TextIterator` should rather be...

The `resource:clean` command is intertwined with Neos.Media's AssetRepository and ThumbnailRepository. This is hard to type for phpstan and generally unpleasant to look at :D Flow 9 should provide some kind...

Related: #3229 **Upgrade instructions** **Review instructions** **Checklist** - [ ] Code follows the PSR-2 coding style - [ ] Tests have been created, run and adjusted as needed - [...

Task
9.0

There is currently no guarding against monitoring everything out of `node_modules`. As this is such a common preserved folder i would not expect anyone sane for using it for real....

phpStan rightfully complains in the `FlowAnnotationDriver` about this dead code. We foreach over the `$tableAnnotation->uniqueConstraints` as `$uniqueConstraint`. But in Line 251 we reassign the variable `$uniqueConstraint` to `['columns' => $uniqueConstraint->columns];`...

help wanted
Task
9.0

i just noticed that our `\Neos\Flow\Http\Client\RequestEngineInterface` matches exactly the `\Psr\Http\Client\ClientInterface` so if we deprecate ours and make it extend the psr standard our browser would be psr compatible and one...

I propose to add an EEL `dir()` helper to get all variable names of current scope and `dir(value)` to get all accessible properties When working with objects in eel its...

We only render the exception that happened while calling `buildView`, but we never tell that this is the original cause for the exception handler to be even triggered. https://github.com/neos/flow-development-collection/blob/cd832f295cd4c7413f088f74ed8c61607518d3bc/Neos.Flow/Classes/Error/DebugExceptionHandler.php#L78-L82 I...