Skip to content

Commit

Permalink
Made steppedOrd static for strict PHP environments
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjoiner committed Dec 19, 2016
1 parent 03cab45 commit 88e62d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OrdinalNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static function convert( $num, $appendAnd = false, $titleCase = false ){
*
* @return {string}
*/
private function steppedOrd( $num, $stepSize, $ordinalForm, $wordForm ){
private static function steppedOrd( $num, $stepSize, $ordinalForm, $wordForm ){
$strNum = (string)$num;
$strStep = (string)$stepSize;

Expand Down

0 comments on commit 88e62d5

Please sign in to comment.