Changeset 41636 for trunk/tests/phpunit/includes/bootstrap.php
- Timestamp:
- 09/28/2017 11:14:26 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/bootstrap.php
r40536 r41636 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.