for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Command;
use Ramsey\Uuid\UuidInterface;
class DeleteCollectionCommand implements CommandInterface
{
/**
* @var UuidInterface
*/
private $id;
* @param UuidInterface $id
public function __construct(UuidInterface $id)
$this->id = $id;
}
* @return UuidInterface
public function getId(): UuidInterface
return $this->id;