Marc Henry Schultz
Marc Henry Schultz
As @nezaniel wrote in slack when helping to debug a behaviour test: https://neos-project.slack.com/archives/C3MCBK6S2/p1686686517847629?thread_ts=1686667527.498869&channel=C3MCBK6S2&message_ts=1686686517.847629 > That RootNodeWasCreated event never could have occured the way you declared it. Hint: always use commands...
Neos adjustments https://github.com/neos/neos-development-collection/pull/4856 - the views are now independent of the `ControllerContext` - `ViewInterface::setControllerContext` is not part of the interface anymore and will only be called on demand - the...
the idea is that this is more light weight instead of creating a memory resource. see https://neos-project.slack.com/archives/C050KKBEB/p1710320388608069 Originally meant as part of https://github.com/neos/flow-development-collection/pull/3286, but we dont support buffer streams yet...
resolves #3080 TODO: Adjust that it also works in the constructor: https://github.com/neos/flow-development-collection/pull/3086 **Upgrade instructions** **Review instructions** **Checklist** - [ ] Code follows the PSR-2 coding style - [ ] Tests...
Followup to https://github.com/neos/flow-development-collection/pull/3260 see https://github.com/neos/flow-development-collection/pull/3260#discussion_r1454980924 **Upgrade instructions** **Review instructions** **Checklist** - [ ] Code follows the PSR-2 coding style - [ ] Tests have been created, run and adjusted as...
These new utility methods are needed by neos. And its best to place them into the utility with additional tests. See - https://github.com/neos/neos-development-collection/pull/4509#pullrequestreview-1703744742 - and https://github.com/neos/neos-development-collection/pull/4359#pullrequestreview-1506601606 **Upgrade instructions** **Review instructions**...
Flow has a custom extension of php unit mocks, that comes from times of typo3. Via the accessibly proxy it allows for calling even protected methods and access of protected...
wip introduction of the `SpecialResponsesSupport` write tests ,... **Upgrade instructions** **Review instructions** **Checklist** - [ ] Code follows the PSR-2 coding style - [ ] Tests have been created, run...
The name of the previously suggested `SimpleActionController` looked for improvement. The `Simple*` prefix suggest, that the initial implementation blew up too much. But ideally a name would be more obvious...
In https://github.com/neos/flow-development-collection/pull/3232#discussion_r1467443443 i mentioned that "replacing" the `$this->response` is probably not a good idea and we should disallow this via readonly. Mutating by object reference is the only way allowed....