diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-14 14:15:03 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-14 14:15:03 +0100 |
commit | 26313bddee1fb67af10141671a47bbe703a025fd (patch) | |
tree | afbb330b4761c331cfbaa4ccf1a31f15af1198d1 /user_guide_src/source/general/styleguide.rst | |
parent | 88303fd3af7e1347fb2ceeb80a4a898980f98677 (diff) |
[ci skip] More doc changes related to PHP 5.4.8 requirement
Diffstat (limited to 'user_guide_src/source/general/styleguide.rst')
-rw-r--r-- | user_guide_src/source/general/styleguide.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/general/styleguide.rst b/user_guide_src/source/general/styleguide.rst index 9b4a84e14..5f25a5ae4 100644 --- a/user_guide_src/source/general/styleguide.rst +++ b/user_guide_src/source/general/styleguide.rst @@ -346,7 +346,7 @@ Compatibility ============= CodeIgniter recommends PHP 5.6 or newer to be used, but it should be -compatible with PHP 5.3.7. Your code must either be compatible with this +compatible with PHP 5.4.8. Your code must either be compatible with this requirement, provide a suitable fallback, or be an optional feature that dies quietly without affecting a user's application. @@ -633,4 +633,4 @@ Whenever appropriate, provide function argument defaults, which helps prevent PHP errors with mistaken calls and provides common fallback values which can save a few lines of code. Example:: - function foo($bar = '', $baz = FALSE)
\ No newline at end of file + function foo($bar = '', $baz = FALSE) |