NOISSUE remove reference operator.

This commit is contained in:
bnu 2013-12-30 17:35:02 +09:00
parent 35384999c9
commit 194ce8614a
118 changed files with 859 additions and 859 deletions

View file

@ -42,7 +42,7 @@ class adminAdminControllerTest extends PHPUnit_Framework_TestCase
$oContext->set('logged_info', $logged_info);
$oContext->set('is_admin', 'Y');
$this->oAdminAdminController = &getAdminController('admin');
$this->oAdminAdminController = getAdminController('admin');
}
public function testInsertLayout()

View file

@ -57,8 +57,8 @@ class documentModelTest extends PHPUnit_Framework_TestCase
self::$oDB = new DBMysql;
$this->oDocumentController = &getController('document');
$this->oDocumentModel = &getModel('document');
$this->oDocumentController = getController('document');
$this->oDocumentModel = getModel('document');
}