File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 ();
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 }
Original file line number Diff line number Diff line change 2121 "autoload" : {
2222 "psr-4" : {
2323 "App\\ " : " app/" ,
24- "Config\\ " : " app/Config"
24+ "Config\\ " : " app/Config/ "
2525 },
2626 "exclude-from-classmap" : [
2727 " **/Database/Migrations/**"
You can’t perform that action at this time.
0 commit comments