hasTable() public méthode

Checks if a database table exists
public hasTable ( string $table ) : boolean
$table string
Résultat boolean
Exemple #1
0
 /**
  * Checks if a database table exists
  *
  * @param string $table
  * @return boolean 
  * @static 
  */
 public static function hasTable($table)
 {
     return \Orangehill\Iseed\Iseed::hasTable($table);
 }