20 lines
386 B
PHP
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
|
|
;
|
|
}
|