Skip to content

Commit a56e853

Browse files
committed
Release v4.5.4
1 parent bb28dd9 commit a56e853

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
runs-on: ubuntu-latest
1717

18-
if: "!contains(github.event.head_commit.message, '[ci skip]')"
18+
if: (! contains(github.event.head_commit.message, '[ci skip]'))
1919

2020
steps:
2121
- name: Checkout

app/Config/Events.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Events::on('create', [$myInstance, 'myMethod']);
2424
*/
2525

26-
Events::on('pre_system', static function () {
26+
Events::on('pre_system', static function (): void {
2727
if (ENVIRONMENT !== 'testing') {
2828
if (ini_get('zlib.output_compression')) {
2929
throw FrameworkException::forEnabledZlibOutputCompression();
@@ -47,7 +47,7 @@
4747
Services::toolbar()->respond();
4848
// Hot Reload route - for framework use on the hot reloader.
4949
if (ENVIRONMENT === 'development') {
50-
Services::routes()->get('__hot-reload', static function () {
50+
Services::routes()->get('__hot-reload', static function (): void {
5151
(new HotReloader())->run();
5252
});
5353
}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"autoload": {
2222
"psr-4": {
2323
"App\\": "app/",
24-
"Config\\": "app/Config"
24+
"Config\\": "app/Config/"
2525
},
2626
"exclude-from-classmap": [
2727
"**/Database/Migrations/**"

0 commit comments

Comments
 (0)