File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
runs-on : ubuntu-latest
17
17
18
- if : " ! contains(github.event.head_commit.message, '[ci skip]')"
18
+ if : (! contains(github.event.head_commit.message, '[ci skip]'))
19
19
20
20
steps :
21
21
- name : Checkout
Original file line number Diff line number Diff line change 23
23
* Events::on('create', [$myInstance, 'myMethod']);
24
24
*/
25
25
26
- Events::on ('pre_system ' , static function () {
26
+ Events::on ('pre_system ' , static function (): void {
27
27
if (ENVIRONMENT !== 'testing ' ) {
28
28
if (ini_get ('zlib.output_compression ' )) {
29
29
throw FrameworkException::forEnabledZlibOutputCompression ();
47
47
Services::toolbar ()->respond ();
48
48
// Hot Reload route - for framework use on the hot reloader.
49
49
if (ENVIRONMENT === 'development ' ) {
50
- Services::routes ()->get ('__hot-reload ' , static function () {
50
+ Services::routes ()->get ('__hot-reload ' , static function (): void {
51
51
(new HotReloader ())->run ();
52
52
});
53
53
}
Original file line number Diff line number Diff line change 21
21
"autoload" : {
22
22
"psr-4" : {
23
23
"App\\ " : " app/" ,
24
- "Config\\ " : " app/Config"
24
+ "Config\\ " : " app/Config/ "
25
25
},
26
26
"exclude-from-classmap" : [
27
27
" **/Database/Migrations/**"
You can’t perform that action at this time.
0 commit comments