Skip to content

Commit

Permalink
Change short array syntax to full array syntax
Browse files Browse the repository at this point in the history
Can't use short array in php < 5.4
  • Loading branch information
Bill Schaller authored and deeky666 committed Apr 15, 2015
1 parent 99a6b53 commit 49dfdab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public function testPkOrdering()
$table = new Table('sqlsrv_pk_ordering');
$table->addColumn('colA', 'integer', array('notnull' => true));
$table->addColumn('colB', 'integer', array('notnull' => true));
$table->setPrimaryKey(['colB', 'colA']);
$table->setPrimaryKey(array('colB', 'colA'));
$this->_sm->createTable($table);

$indexes = $this->_sm->listTableIndexes('sqlsrv_pk_ordering');
Expand Down

0 comments on commit 49dfdab

Please sign in to comment.