Commit 3f15fc80 authored by jsor's avatar jsor

Add docblocks

parent 0679d3b6
......@@ -42,6 +42,11 @@ class SchemaCreateTableColumnEventArgs extends SchemaCreateTableEventArgs
*/
private $_column = null;
/**
* @param Column $column
* @param Table $table
* @param AbstractPlatform $platform
*/
public function __construct(Column $column, Table $table, AbstractPlatform $platform)
{
parent::__construct($table, $platform);
......
......@@ -51,6 +51,10 @@ class SchemaCreateTableEventArgs extends SchemaEventArgs
*/
private $_sql = array();
/**
* @param Table $table
* @param AbstractPlatform $platform
*/
public function __construct(Table $table, AbstractPlatform $platform)
{
$this->_table = $table;
......
......@@ -39,6 +39,9 @@ class SchemaEventArgs extends EventArgs
*/
private $_preventDefault = false;
/**
* @param Table $table
*/
public function __construct(Table $table)
{
$this->_table = $table;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment