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 Item extends PresentationModel implements HasPresenterInterface
{
/** @var string */
protected $description = '';
protected $name = '';
/**
* @return string The class name of the presenter for this presentation model.
*/
public function getPresenterName(): string
return ItemPresenter::class;
}