/**
  *
  */
 public function __construct()
 {
     $this->properties = new Collection();
     if (auth()->check()) {
         $this->addProperty(auth()->user()->id);
         $this->addProperty(Prefs::lastActivity());
     }
 }
Пример #2
0
 /**
  *
  */
 public function __construct()
 {
     $this->properties = new Collection();
     $this->addProperty(Auth::user()->id);
     $this->addProperty(Prefs::lastActivity());
 }