Changeset 41637
- Timestamp:
- 09/28/2017 11:16:18 PM (7 years ago)
- Location:
- branches/4.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8
-
branches/4.8/tests/phpunit/includes/bootstrap.php
r40536 r41637 133 133 array_shift( $argv ); 134 134 $options = array(); 135 while ( list( $i, $arg ) = each( $argv ) ) { 135 while ( current( $argv ) ) { 136 $arg = current( $argv ); 137 next( $argv ); 136 138 try { 137 139 if ( strlen( $arg ) > 1 && $arg[0] === '-' && $arg[1] === '-' ) {
Note: See TracChangeset
for help on using the changeset viewer.