Skip to content

Commit 33728fb

Browse files
Create Dependabot config file (yoanm#22)
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Yo <[email protected]>
1 parent 607073c commit 33728fb

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
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/KernelWithDocCreatedListener.php

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

88
class KernelWithDocCreatedListener 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)