. */ declare(strict_types=1); namespace FireflyIII\Support; use Illuminate\Support\Collection; /** * Class CacheProperties. */ class SingleCacheProperties extends CacheProperties { /** * */ public function __construct() { parent::__construct(); $this->properties = new Collection; if (auth()->check()) { $this->addProperty(auth()->user()->id); } } }