* @author Quetzy Garcia * @author Raphael França * @copyright 2015-2017 * * For the full copyright and license information, * please view the LICENSE.md file that was distributed * with this source code. */ namespace DummyNamespace; use OwenIt\Auditing\Contracts\Auditable; use OwenIt\Auditing\Contracts\AuditDriver; use OwenIt\Auditing\Models\Audit; class DummyClass implements AuditDriver { /** * Perform an audit. * * @param \OwenIt\Auditing\Contracts\Auditable $model * * @return \OwenIt\Auditing\Models\Audit */ public function audit(Auditable $model) { // TODO: Change the auto-generated stub } /** * Remove older audits that go over the threshold. * * @param \OwenIt\Auditing\Contracts\Auditable $model * * @return bool */ public function prune(Auditable $model) { // TODO: Change the auto-generated stub } }