Esempio n. 1
0
 /**
  * Require in all the migration files in a given path.
  *
  * @param  string  $path
  * @param  array   $files
  * @return void
  */
 public function requireFiles($path, array $files)
 {
     foreach ($files as $file) {
         $this->files->requireOnce($path . '/' . $file . '.php');
     }
 }