Skip to content

Commit

Permalink
docs: add changelog and upgrade_450
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Oct 6, 2023
1 parent f51c542 commit 4e6b1bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions user_guide_src/source/changelogs/v4.5.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ Others
- **Logger:** The :php:func:`log_message()` function and the logger methods in
``CodeIgniter\Log\Logger`` now do not return ``bool`` values. The return types
have been fixed to ``void`` to follow the PSR-3 interface.
- **Autoloader:** The prefix ``\`` in the fully qualified classname returned by
``FileLocator::findQualifiedNameFromPath()`` has been removed.

Interface Changes
=================
Expand Down
8 changes: 8 additions & 0 deletions user_guide_src/source/installation/upgrade_450.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ reversed.
Previous: route1 → route2 → filter1 → filter2
Now: route2 → route1 → filter2 → filter1

FileLocator::findQualifiedNameFromPath()
========================================

In previous versions, ``FileLocator::findQualifiedNameFromPath()`` returns Fully
Qualified Classnames with a leading ``\``. Now the leading ``\`` has been removed.

If you have code that expects a leading ``\``, fix it.

Removed Deprecated Items
========================

Expand Down

0 comments on commit 4e6b1bb

Please sign in to comment.