Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This keeps updated the GitHub actions used in .github/workflows/*.yaml
# See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- php-version: '8.2'
dependencies: highest
allowed-to-fail: false
symfony-require: 7.3.*
variant: symfony/symfony:"7.3.*"
symfony-require: 7.4.*
variant: symfony/symfony:"7.4.*"
- php-version: '8.3'
dependencies: highest
allowed-to-fail: false
Expand All @@ -51,8 +51,8 @@ jobs:
- php-version: '8.3'
dependencies: highest
allowed-to-fail: false
symfony-require: 7.3.*
variant: symfony/symfony:"7.3.*"
symfony-require: 7.4.*
variant: symfony/symfony:"7.4.*"
- php-version: '8.4'
dependencies: highest
allowed-to-fail: false
Expand All @@ -61,8 +61,8 @@ jobs:
- php-version: '8.4'
dependencies: highest
allowed-to-fail: false
symfony-require: 7.3.*
variant: symfony/symfony:"7.3.*"
symfony-require: 7.4.*
variant: symfony/symfony:"7.4.*"

steps:
- name: Checkout
Expand Down
3 changes: 3 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/*
* This file is part of the CleverAge/DoctrineProcessBundle package.
*
Expand Down Expand Up @@ -36,6 +38,7 @@
'modernize_strpos' => true,
'get_class_to_class_keyword' => true,
'phpdoc_to_comment' => ['ignored_tags' => ['var']], // Fix issue on initializeStatement method $params variable
'declare_strict_types' => true,
])
->setRiskyAllowed(true)
->setFinder(
Expand Down
1 change: 1 addition & 0 deletions src/CleverAgeDoctrineProcessBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

class CleverAgeDoctrineProcessBundle extends Bundle
{
#[\Override]
public function getPath(): string
{
return \dirname(__DIR__);
Expand Down
1 change: 1 addition & 0 deletions src/Task/EntityManager/AbstractDoctrineQueryTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
*/
abstract class AbstractDoctrineQueryTask extends AbstractDoctrineTask
{
#[\Override]
protected function configureOptions(OptionsResolver $resolver): void
{
parent::configureOptions($resolver);
Expand Down
1 change: 1 addition & 0 deletions src/Task/EntityManager/DoctrineBatchWriterTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public function execute(ProcessState $state): void
}
}

#[\Override]
protected function configureOptions(OptionsResolver $resolver): void
{
parent::configureOptions($resolver);
Expand Down
Loading