mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
22 lines
484 B
PHP
22 lines
484 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
return [
|
|
'customer1' => [
|
|
'email' => 'customer1@example.com',
|
|
'name' => 'customer1',
|
|
'address' => 'address1',
|
|
'status' => 1,
|
|
],
|
|
'customer2' => [
|
|
'email' => 'customer2@example.com',
|
|
'name' => 'customer2',
|
|
'address' => 'address2',
|
|
'status' => 2,
|
|
],
|
|
];
|