Browse Source

Fix PHP version number in PHP54MigrationSet description

Jacob Dreesen 4 years ago
parent
commit
33d53b77f4
2 changed files with 2 additions and 2 deletions
  1. 1 1
      doc/ruleSets/PHP54Migration.rst
  2. 1 1
      src/RuleSet/Sets/PHP54MigrationSet.php

+ 1 - 1
doc/ruleSets/PHP54Migration.rst

@@ -2,7 +2,7 @@
 Rule set ``@PHP54Migration``
 Rule set ``@PHP54Migration``
 ============================
 ============================
 
 
-Rules to improve code for PHP 5.6 compatibility.
+Rules to improve code for PHP 5.4 compatibility.
 
 
 Rules
 Rules
 -----
 -----

+ 1 - 1
src/RuleSet/Sets/PHP54MigrationSet.php

@@ -28,6 +28,6 @@ final class PHP54MigrationSet extends AbstractRuleSetDescription
 
 
     public function getDescription()
     public function getDescription()
     {
     {
-        return 'Rules to improve code for PHP 5.6 compatibility.';
+        return 'Rules to improve code for PHP 5.4 compatibility.';
     }
     }
 }
 }