Пример #1
0
 /**
  * Get migration path (either specified by '--path' option or default location).
  *
  * @return string
  */
 protected function getMigrationPath()
 {
     if (!is_null($targetPath = $this->input->getOption('path'))) {
         return ROOT . $targetPath;
     }
     return parent::getMigrationPath();
 }