File tree 2 files changed +9
-10
lines changed 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 7.4 release series are documented in this fil
7
7
### Fixed
8
8
9
9
* Fixed [ #3379 ] ( https://github.com/sebastianbergmann/phpunit/issues/3379 ) : Dependent test of skipped test has status ` -1 `
10
+ * Fixed [ #3394 ] ( https://github.com/sebastianbergmann/phpunit/issues/3394 ) : Process Isolation does not work when PHPUnit is used as PHAR
10
11
11
12
## [ 7.4.3] - 2018-10-23
12
13
Original file line number Diff line number Diff line change @@ -40,18 +40,16 @@ Phar::mapPhar('___PHAR___');
40
40
41
41
___FILELIST___
42
42
43
- if (!$ execute ) {
44
- exit ;
45
- }
46
-
47
- if (isset ($ printManifest )) {
48
- print file_get_contents (__PHPUNIT_PHAR_ROOT__ . '/manifest.txt ' );
43
+ if ($ execute ) {
44
+ if (isset ($ printManifest )) {
45
+ print file_get_contents (__PHPUNIT_PHAR_ROOT__ . '/manifest.txt ' );
49
46
50
- exit ;
51
- }
47
+ exit ;
48
+ }
52
49
53
- unset($ execute );
50
+ unset($ execute );
54
51
55
- PHPUnit \TextUI \Command::main ();
52
+ PHPUnit \TextUI \Command::main ();
53
+ }
56
54
57
55
__HALT_COMPILER ();
You can’t perform that action at this time.
0 commit comments