File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 15
15
use Symfony \Component \BrowserKit \CookieJar ;
16
16
use Symfony \Component \BrowserKit \History ;
17
17
use Symfony \Component \BrowserKit \Request as BrowserkitRequest ;
18
- use yii \web \Request as YiiRequest ;
19
18
use Symfony \Component \BrowserKit \Response ;
20
19
use Yii ;
21
- use yii \base \Component ;
22
20
use yii \base \Event ;
23
21
use yii \base \ExitException ;
24
22
use yii \base \Security ;
25
23
use yii \base \UserException ;
26
24
use yii \mail \BaseMessage ;
27
- use yii \mail \MailEvent ;
28
25
use yii \web \Application ;
29
- use yii \web \ErrorHandler ;
30
26
use yii \web \IdentityInterface ;
31
- use yii \web \Request ;
27
+ use yii \web \Request as YiiRequest ;
32
28
use yii \web \Response as YiiResponse ;
33
29
use yii \web \User ;
34
30
@@ -308,7 +304,11 @@ public function startApp(?\yii\log\Logger $logger = null): void
308
304
}
309
305
310
306
$ config = $ this ->mockMailer ($ config );
311
- Yii::$ app = Yii::createObject ($ config );
307
+ $ app = Yii::createObject ($ config );
308
+ if (!$ app instanceof \yii \base \Application) {
309
+ throw new ModuleConfigException ($ this , "Failed to initialize Yii2 app " );
310
+ }
311
+ \Yii::$ app = $ app ;
312
312
313
313
if ($ logger instanceof \yii \log \Logger) {
314
314
Yii::setLogger ($ logger );
Original file line number Diff line number Diff line change 22
22
use Symfony \Component \BrowserKit \History ;
23
23
use Yii ;
24
24
use yii \base \Security ;
25
- use yii \web \Application as WebApplication ;
26
25
use yii \db \ActiveQueryInterface ;
27
26
use yii \db \ActiveRecordInterface ;
28
27
use yii \helpers \Url ;
29
28
use yii \mail \BaseMessage ;
30
29
use yii \mail \MessageInterface ;
31
30
use yii \test \Fixture ;
32
- use yii \web \Application ;
31
+ use yii \web \Application as WebApplication ;
33
32
use yii \web \IdentityInterface ;
34
33
35
34
/**
You can’t perform that action at this time.
0 commit comments