Files
yii2/tests/framework/test/data/array_fixture.php
2015-04-16 12:10:01 +03: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,
],
];