File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 2727 dependencies : ' highest'
2828
2929 steps :
30- - uses : actions/checkout@v4
30+ - uses : actions/checkout@v5
3131
3232 - name : Setup PHP
3333 uses : shivammathur/setup-php@v2
5656 runs-on : ubuntu-24.04
5757
5858 steps :
59- - uses : actions/checkout@v4
59+ - uses : actions/checkout@v5
6060
6161 - name : Setup PHP
6262 uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ bin/cake server -p 8765
3434
3535Then visit ` http://localhost:8765 ` to see the welcome page.
3636
37+ ## Demo app
38+
39+ Check out the [ 5.x-demo branch] ( https://github.com/cakephp/app/tree/5.x-demo ) , which contains demo migrations and a seeder.
40+ See the [ README] ( https://github.com/cakephp/app/blob/5.x-demo/README.md ) on how to get it running.
41+
3742## Update
3843
3944Since this skeleton is a starting point for your application and various files
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public function initialize(): void
4141 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
4242 * @return void
4343 */
44- public function beforeFilter (EventInterface $ event )
44+ public function beforeFilter (EventInterface $ event ): void
4545 {
4646 }
4747
@@ -51,7 +51,7 @@ public function beforeFilter(EventInterface $event)
5151 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
5252 * @return void
5353 */
54- public function beforeRender (EventInterface $ event )
54+ public function beforeRender (EventInterface $ event ): void
5555 {
5656 parent ::beforeRender ($ event );
5757
@@ -64,7 +64,7 @@ public function beforeRender(EventInterface $event)
6464 * @param \Cake\Event\EventInterface<\Cake\Controller\Controller> $event Event.
6565 * @return void
6666 */
67- public function afterFilter (EventInterface $ event )
67+ public function afterFilter (EventInterface $ event ): void
6868 {
6969 }
7070}
You can’t perform that action at this time.
0 commit comments