mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Note: This is enforced by WPCS 3.0.0: 1. There should be no space between an increment/decrement operator and the variable it applies to. 2. Pre-increment/decrement should be favoured over post-increment/decrement for stand-alone statements. “Pre” will in/decrement and then return, “post” will return and then in/decrement. Using the “pre” version is slightly more performant and can prevent future bugs when code gets moved around. References: * [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#increment-decrement-operators WordPress PHP Coding Standards: Increment/decrement operators] * [https://github.com/WordPress/WordPress-Coding-Standards/pull/2130 WPCS: PR #2130 Core: add sniffs to check formatting of increment/decrement operators] Props jrf. See #59161, #58831. git-svn-id: https://develop.svn.wordpress.org/trunk@56549 602fd350-edb4-49c9-b593-d223f7449a82
46 lines
768 B
PHP
46 lines
768 B
PHP
<?php
|
|
|
|
class WP_UnitTest_Generator_Sequence {
|
|
public static $incr = -1;
|
|
public $next;
|
|
public $template_string;
|
|
|
|
public function __construct( $template_string = '%s', $start = null ) {
|
|
if ( $start ) {
|
|
$this->next = $start;
|
|
} else {
|
|
++self::$incr;
|
|
$this->next = self::$incr;
|
|
}
|
|
$this->template_string = $template_string;
|
|
}
|
|
|
|
public function next() {
|
|
$generated = sprintf( $this->template_string, $this->next );
|
|
++$this->next;
|
|
return $generated;
|
|
}
|
|
|
|
/**
|
|
* Get the incrementor.
|
|
*
|
|
* @since 4.6.0
|
|
*
|
|
* @return int
|
|
*/
|
|
public function get_incr() {
|
|
return self::$incr;
|
|
}
|
|
|
|
/**
|
|
* Get the template string.
|
|
*
|
|
* @since 4.6.0
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_template_string() {
|
|
return $this->template_string;
|
|
}
|
|
}
|