File tree Expand file tree Collapse file tree 4 files changed +70
-63
lines changed Expand file tree Collapse file tree 4 files changed +70
-63
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
namespace Codeception \Exception ;
4
6
5
- class ExternalUrlException extends \Exception
7
+ use Exception ;
8
+
9
+ class ExternalUrlException extends Exception
6
10
{
7
11
}
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ declare (strict_types=1 );
4
+
3
5
namespace Codeception \Lib ;
4
6
5
7
/**
6
8
* Abstract module for PHP frameworks connected via Symfony BrowserKit components
7
9
* Each framework is connected with it's own connector defined in \Codeception\Lib\Connector
8
10
* Each module for framework should extend this class.
9
- *
10
11
*/
11
12
abstract class Framework extends InnerBrowser
12
13
{
13
14
/**
14
15
* Returns a list of recognized domain names
15
- *
16
- * @return array
17
16
*/
18
- protected function getInternalDomains ()
17
+ protected function getInternalDomains (): array
19
18
{
20
19
return [];
21
20
}
You can’t perform that action at this time.
0 commit comments