Skip to content

Commit f92605c

Browse files
Bump doctrine/.github from 7.2.2 to 7.3.0 (#892)
* Bump doctrine/.github from 7.1.0 to 7.2.0 Bumps [doctrine/.github](https://github.com/doctrine/.github) from 7.1.0 to 7.2.0. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](doctrine/.github@7.1.0...7.2.0) --- updated-dependencies: - dependency-name: doctrine/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Bump doctrine/.github from 7.2.0 to 7.2.1 (#880) Bumps [doctrine/.github](https://github.com/doctrine/.github) from 7.2.0 to 7.2.1. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](doctrine/.github@7.2.0...7.2.1) --- updated-dependencies: - dependency-name: doctrine/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump doctrine/.github from 7.2.1 to 7.2.2 (#882) Bumps [doctrine/.github](https://github.com/doctrine/.github) from 7.2.1 to 7.2.2. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](doctrine/.github@7.2.1...7.2.2) --- updated-dependencies: - dependency-name: doctrine/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump doctrine/.github from 7.2.2 to 7.3.0 Bumps [doctrine/.github](https://github.com/doctrine/.github) from 7.2.2 to 7.3.0. - [Release notes](https://github.com/doctrine/.github/releases) - [Commits](doctrine/.github@7.2.2...7.3.0) --- updated-dependencies: - dependency-name: doctrine/.github dependency-version: 7.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Remove target-branch * Fix use statement ordering in config docs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreas Braun <[email protected]>
1 parent 2e5fc45 commit f92605c

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ updates:
66
interval: "weekly"
77
labels:
88
- "CI"
9-
target-branch: "5.1.x"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "Coding Standards"
14-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@7.1.0"
14+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@7.3.0"

.github/workflows/composer-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ on:
1515
jobs:
1616
composer-lint:
1717
name: "Composer Lint"
18-
uses: "doctrine/.github/.github/workflows/composer-lint.yml@7.1.0"
18+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@7.3.0"

.github/workflows/release-on-milestone-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@7.1.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@7.3.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ on:
1515

1616
jobs:
1717
static-analysis:
18-
uses: "doctrine/.github/.github/workflows/phpstan.yml@7.1.0"
18+
uses: "doctrine/.github/.github/workflows/phpstan.yml@7.3.0"

docs/config.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ Sample Configuration
4949
5050
.. code-block:: php
5151
52+
use Symfony\Config\DoctrineMongodbConfig;
5253
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
5354
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
54-
use Symfony\Config\DoctrineMongodbConfig;
5555
5656
return static function (DoctrineMongodbConfig $config): void {
5757
$config->connection('default')
@@ -142,9 +142,9 @@ If you wish to use memcached to cache your metadata, you need to configure the
142142
143143
.. code-block:: php
144144
145-
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
146145
use Symfony\Component\Cache\Adapter\MemcachedAdapter;
147146
use Symfony\Config\DoctrineMongodbConfig;
147+
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
148148
149149
return static function (DoctrineMongodbConfig $config): void {
150150
$config->defaultDatabase('hello_' . param('kernel.environment'));
@@ -260,8 +260,8 @@ The following configuration shows a bunch of mapping examples:
260260
261261
.. code-block:: php
262262
263-
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
264263
use Symfony\Config\DoctrineMongodbConfig;
264+
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
265265
266266
return static function (DoctrineMongodbConfig $config): void {
267267
$config->documentManager('default')
@@ -475,8 +475,8 @@ following syntax:
475475
476476
.. code-block:: php
477477
478-
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
479478
use Symfony\Config\DoctrineMongodbConfig;
479+
use function Symfony\Component\DependencyInjection\Loader\Configurator\param;
480480
481481
return static function (DoctrineMongodbConfig $config): void {
482482
$config->defaultDatabase('hello_' . param('kernel.environment'));

0 commit comments

Comments
 (0)