示例#1
0
 private function updateTagsForTrackFile(TrackFile $trackFile)
 {
     $trackFile->touch();
     if (\File::exists($trackFile->getFile())) {
         $format = $trackFile->format;
         $data = self::$Formats[$format];
         $this->{$data['tag_method']}($format);
     }
 }