Exemple #1
0
 /**
  * Inserts an amount of classes into an empty index
  *
  * @param AutoloaderIndex $index An instance of AutoloaderIndex
  * @param int             $count the amount of classes for the index
  *
  * @see _createIndexes()
  * @return void
  */
 private function _fillIndex(AutoloaderIndex $index, $count)
 {
     for ($i = 0; $i < $count; $i++) {
         $index->setPath($this->_getIndexedClassName($i), uniqid());
     }
     $index->save();
 }