generateSeed() public method

Generates a seed file.
public generateSeed ( string $table, string $database = null, integer $max, string $prerunEvent = null, $postrunEvent = null ) : boolean
$table string
$database string
$max integer
$prerunEvent string
return boolean
コード例 #1
0
ファイル: _ide_helper.php プロジェクト: phillipmadsen/deved
 /**
  * Generates a seed file.
  *
  * @param string $table
  * @param string $database
  * @param int $max
  * @return bool 
  * @throws Orangehill\Iseed\TableNotFoundException
  * @static 
  */
 public static function generateSeed($table, $database = null, $max = 0)
 {
     return \Orangehill\Iseed\Iseed::generateSeed($table, $database, $max);
 }