- Added createStream methods and fixed multiple errors views

This commit is contained in:
Dave M. 2025-12-20 12:44:13 -05:00 committed by Dave Mc Nicoll
parent 5bb5e8ce61
commit 16ee06593c
2 changed files with 4 additions and 5 deletions

View File

@ -39,9 +39,4 @@ class ApplicationStrategy extends Strategy\ApplicationStrategy {
{
return $this->getContainer()->has(MethodNotAllowedInterface::class) ? $this->getContainer()->get(MethodNotAllowedInterface::class) : parent::getMethodNotAllowedDecorator($exception);
}
public function getMethodNotAllowedDecorator(MethodNotAllowedException $exception): MiddlewareInterface
{
return $this->getContainer()->has(MethodNotAllowedInterface::class) ? $this->getContainer()->get(MethodNotAllowedInterface::class) : parent::getMethodNotAllowedDecorator($exception);
}
}

File diff suppressed because one or more lines are too long