コード例 #1
0
ファイル: _ide_helper.php プロジェクト: MPur/tp-facebook
 /**
  * Begin a fluent query against a database table.
  *
  * @param string $table
  * @return \Illuminate\Database\Query\Builder 
  * @static 
  */
 public static function table($table)
 {
     //Method inherited from \Illuminate\Database\Connection
     return \Illuminate\Database\SQLiteConnection::table($table);
 }