Skip to content

Commit b444d37

Browse files
committed
merge 5.x => 5.next
2 parents 440e41f + b20e67b commit b444d37

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
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
@@ -56,7 +56,7 @@ jobs:
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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ bin/cake server -p 8765
3434

3535
Then 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

3944
Since this skeleton is a starting point for your application and various files

src/Controller/ErrorController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)