Files
yii2/tests/unit/framework/test/data/customer.php
Alexander Makarov abeea6351a Renamed fixtures
2014-03-31 01:19:11 +04:00

17 lines
337 B
PHP

<?php
return [
'customer1' => [
'email' => 'customer1@example.com',
'name' => 'customer1',
'address' => 'address1',
'status' => 1,
],
'customer2' => [
'email' => 'customer2@example.com',
'name' => 'customer2',
'address' => 'address2',
'status' => 2,
],
];