Пример #1
0
 /**
  * Load all logs.
  *
  * @return self
  */
 private function load()
 {
     foreach ($this->filesystem->dates(true) as $date => $path) {
         $raw = $this->filesystem->read($date);
         $this->put($date, Log::make($date, $path, $raw));
     }
     return $this;
 }