for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Psi\Component\Grid\View\Cell;
use Psi\Component\Grid\CellInterface;
class SelectCell implements CellInterface
{
const INPUT_NAME = 'selected_identifiers';
private $identifier;
public function __construct($identifier)
$this->identifier = $identifier;
}
public function getInputName()
return sprintf('%s[%s]', self::INPUT_NAME, $this->identifier);
public function getValue()
return $this->identifier;
/**
* {@inheritdoc}
*/
public function getView()