Files
Chamilo/vendor/knplabs/doctrine-behaviors/src/Model/SoftDeletable/SoftDeletable.php
2025-08-14 22:41:49 +02:00

25 lines
488 B
PHP

<?php
/*
* This file is part of the KnpDoctrineBehaviors package.
*
* (c) KnpLabs <http://knplabs.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Knp\DoctrineBehaviors\Model\SoftDeletable;
/**
* SoftDeletable trait.
*
* Should be used inside entity, that needs to be self-deleted.
*/
trait SoftDeletable
{
use SoftDeletableProperties,
SoftDeletableMethods
;
}