12 lines
154 B
PHP
12 lines
154 B
PHP
|
<?php
|
||
|
/**
|
||
|
* application configurations shared by all test types
|
||
|
*/
|
||
|
return [
|
||
|
'components' => [
|
||
|
'mail' => [
|
||
|
'useFileTransport' => true,
|
||
|
],
|
||
|
],
|
||
|
];
|