選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SluggableInterface.php 190B

1234567891011
  1. <?php
  2. namespace Lc\SovBundle\Doctrine\Extension;
  3. interface SluggableInterface
  4. {
  5. public function getSlug(): ?string;
  6. public function setSlug(?string $slug): SluggableInterface;
  7. }