Example #1
0
 /**
  * {@inheritdoc}
  */
 protected function getFiles($path)
 {
     $result = array();
     foreach (Finder::create()->in($path)->files() as $file) {
         $file = File::fromSplFileInfo($file, $path);
         $result[$file->getRelativePath()] = $file;
     }
     return $result;
 }