Exemplo n.º 1
0
 public function doCompileCSWidgetsDir(Dir $specifcationsDir)
 {
     $converter = new JSONConverter();
     $compiled = array();
     foreach ($specifcationsDir->getFiles('json') as $file) {
         $compiled[] = $this->doCompileCSWidgetFile($file, $converter)->getWrittenFile();
     }
     return $compiled;
 }