1
0
mirror of synced 2025-03-06 12:56:10 +03:00

clarified what's the problem in a comment

This commit is contained in:
fullbl 2017-03-19 15:05:29 +01:00 committed by Marco Pivetta
parent 4c7286f57b
commit 82db643b4f
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -28,6 +28,7 @@ class DDC6303Test extends \Doctrine\Tests\OrmFunctionalTestCase
$contractA->originalData = $contractAData;
$contractB = new DDC6303ContractB();
//contractA and contractB have an inheritance from Contract, but one has a string originalData and the second has an array
$contractBData = ['accepted', 'authorized'];
$contractB->originalData = $contractBData;
@ -61,7 +62,6 @@ class DDC6303Test extends \Doctrine\Tests\OrmFunctionalTestCase
{
$contractStringEmptyData = '';
$contractStringZeroData = 0;
$contractArrayEmptyData = [];
$contractStringEmpty = new DDC6303ContractA();
@ -151,4 +151,4 @@ class DDC6303ContractB extends DDC6303Contract
* @var array
*/
public $originalData;
}
}