for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Shoot\Shoot\Tests\Fixtures;
use Shoot\Shoot\HasPresenterInterface;
use Shoot\Shoot\PresentationModel;
final class Failure extends PresentationModel implements HasPresenterInterface
{
/**
* @return string The name by which to resolve the presenter through the DI container.
*/
public function getPresenterName(): string
return FailurePresenter::class;
}