2023-04-08 |
Fix errors reported by psalm |
2023-04-08 |
Fix up TypeError cases found by PHPStan level 7/8 |
2023-04-08 |
Fix up TypeError cases found by PHPStan level 7/8 |
2023-04-08 |
Remove unused variables. |
2023-04-08 |
Namespace all functions.
Add global versions if not already defined. |
2023-04-08 |
Allow disabling loading of global functions.
This helps during testing to ensure that the core only uses namespaced functions. |
2023-04-08 |
Merge remote-tracking branch 'origin/4.next' into 5.x |
2023-04-08 |
5.x Make global functions opt-in
Remove the automatic loading of functions_global.php and add an opt-in
function loader. This is a breaking change from 4.x but we'll give
notice and tools to upgrade and its a one-line fix if you don't.
If you want to keep using global functions just add
```
require CAKE . 'functions.php';
```
to your bootstrap.php. |