- Timestamp:
- 09/09/2023 09:26:01 AM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/factory/class-wp-unittest-generator-sequence.php
r49184 r56549 10 10 $this->next = $start; 11 11 } else { 12 self::$incr++;12 ++self::$incr; 13 13 $this->next = self::$incr; 14 14 } … … 18 18 public function next() { 19 19 $generated = sprintf( $this->template_string, $this->next ); 20 $this->next++;20 ++$this->next; 21 21 return $generated; 22 22 }
Note: See TracChangeset
for help on using the changeset viewer.