Files
opensem/app/Traits/CanComment.php
2021-10-26 21:41:46 +02:00

11 lines
138 B
PHP

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