mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 14:50:56 +08:00
17 lines
337 B
PHP
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,
|
|
],
|
|
];
|