コード例 #1
0
ファイル: TableApi.php プロジェクト: czogori/dami
 /**
  * Constructor.
  *
  * @param string       $table        Table name.
  * @param Schema       $schema
  * @param Manipulation $manipulation
  * @param array        $actions
  */
 public function __construct($name, Schema $schema = null, Manipulation $manipulation, &$actions)
 {
     parent::__construct($name, $schema);
     $this->manipulation = $manipulation;
     $this->actions =& $actions;
 }