Files
opensem/app/Traits/Model/CanComment.php
2021-11-01 18:37:25 +01:00

11 lines
144 B
PHP

<?php
namespace App\Traits\Model;
trait CanComment
{
public function needsCommentApproval($model): bool
{
return true;
}
}