- Timestamp:
- 03/15/2019 12:15:08 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/factory/class-wp-unittest-generator-sequence.php
r42343 r44903 6 6 public $template_string; 7 7 8 function __construct( $template_string = '%s', $start = null ) {8 public function __construct( $template_string = '%s', $start = null ) { 9 9 if ( $start ) { 10 10 $this->next = $start; … … 16 16 } 17 17 18 function next() {18 public function next() { 19 19 $generated = sprintf( $this->template_string, $this->next ); 20 20 $this->next++;
Note: See TracChangeset
for help on using the changeset viewer.