Example #1
0
 public function saveConfig($times, $id)
 {
     $fileSave = Boot::fileCache('lastTimes.txt');
     $fileSave->saveConfig($times, $id);
     unset($fileSave);
 }
 protected function getLastTimesAndId()
 {
     $times = Boot::fileCache('lastTimes.txt');
     return $times->getConfig();
 }