Undefined type Cocur\Slugify\Slugify
Bonsoir,
J'essaie d'utiliser Slugify et je reçois comme message d'erreur " Undefined type 'Cocur\Slugify\Slugify'. " ?
je ne comprend pas car j'ai bien tout déclarer je pense ?
Property.php :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<?php
namespace App\Entity;
use App\Repository\PropertyRepository;
use Doctrine\ORM\Mapping as ORM;
use Cocur\Slugify\Slugify;
/**
* @ORM\Entity(repositoryClass=PropertyRepository::class)
*/
......
..............
...................
public function getSlug(): string
{
return (new Slugify())->slugify($this->title);
} |