Skip to content

Commit 7b3688a

Browse files
Create Dependabot config file (#19)
* Create Dependabot config file * Fix registerBundle signature for SF 5.1 Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Yo <[email protected]>
1 parent 8fd1bb5 commit 7b3688a

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: composer
4+
directory: "/"
5+
schedule:
6+
interval: monthly
7+
open-pull-requests-limit: 10

features/demo_app/src/DefaultKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class DefaultKernel extends AbstractKernel
99
{
10-
public function registerBundles()
10+
public function registerBundles(): iterable
1111
{
1212
$contents = require $this->getProjectDir().'/'.$this->getConfigDirectory().'/bundles.php';
1313
foreach ($contents as $class => $envs) {

features/demo_app/src/KernelWithMethodDocCreatedListener.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class KernelWithMethodDocCreatedListener extends AbstractKernel
99
{
10-
public function registerBundles()
10+
public function registerBundles(): iterable
1111
{
1212
$contents = require $this->getProjectDir().'/'.$this->getConfigDirectory().'/bundles.php';
1313
foreach ($contents as $class => $envs) {

features/demo_app/src/KernelWithServerDocCreatedListener.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class KernelWithServerDocCreatedListener extends AbstractKernel
99
{
10-
public function registerBundles()
10+
public function registerBundles(): iterable
1111
{
1212
$contents = require $this->getProjectDir().'/'.$this->getConfigDirectory().'/bundles.php';
1313
foreach ($contents as $class => $envs) {

0 commit comments

Comments
 (0)