remove unusued variable

This commit is contained in:
Bernhard Posselt 2014-04-19 16:02:15 +02:00
parent f4bc5ee863
commit 0fe4db0992
1 changed files with 0 additions and 6 deletions

View File

@ -197,12 +197,6 @@ class MapperTest extends MapperTestUtility {
public function testUpdateNoId(){
$sql = 'UPDATE `*PREFIX*table` ' .
'SET ' .
'`pre_name` = ?,'.
'`email` = ? ' .
'WHERE `id` = ?';
$params = array('john', 'my@email');
$entity = new Example();
$entity->setPreName($params[0]);