for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// phpcs:ignoreFile
namespace BEAR\Resource;
final class Invoker implements InvokerInterface
{
public function __construct(
private readonly PhpClassInvoker $classInvoker
) {
}
/**
* {@inheritdoc}
*
* @psalm-suppress PossiblyUnusedReturnValue
*/
#[\Override]
public function invoke(AbstractRequest $request): ResourceObject
return $request->resourceObject->_invokeRequest($this->classInvoker, $request);