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 Layout extends PresentationModel implements HasPresenterInterface
{
/** @var string */
protected $title = '';
/**
* Returns the name by which to resolve the presenter through the DI container.
*
* @return string
*/
public function getPresenterName(): string
return LayoutPresenter::class;
}