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