Files
Chamilo/vendor/knplabs/doctrine-behaviors/src/Model/Sluggable/Sluggable.php
2025-04-10 12:24:57 +02:00

20 lines
386 B
PHP

<?php
/**
* @author Lusitanian
* Freely released with no restrictions, re-license however you'd like!
*/
namespace Knp\DoctrineBehaviors\Model\Sluggable;
/**
* Sluggable trait.
*
* Should be used inside entities for which slugs should automatically be generated on creation for SEO/permalinks.
*/
trait Sluggable
{
use SluggableProperties,
SluggableMethods
;
}