PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
spatie
/
laravel-activitylog
/
src
<?php namespace Spatie\Activitylog; use Illuminate\Contracts\Config\Repository; class ActivityLogStatus { protected $enabled = true; public function __construct(Repository $config) { $this->enabled = $config['activitylog.enabled']; } public function enable(): bool { return $this->enabled = true; } public function disable(): bool { return $this->enabled = false; } public function disabled(): bool { return $this->enabled === false; } }
[+]
Exceptions
[-] LogOptions.php
[edit]
[-] LogBatch.php
[edit]
[-] EventLogBag.php
[edit]
[-] CauserResolver.php
[edit]
[+]
..
[-] ActivityLogStatus.php
[edit]
[+]
Contracts
[-] helpers.php
[edit]
[-] CleanActivitylogCommand.php
[edit]
[+]
Facades
[+]
Models
[-] ActivityLogger.php
[edit]
[+]
Traits
[-] ActivitylogServiceProvider.php
[edit]