Skip to content

Commit

Permalink
Merge 2.x into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI committed Jul 7, 2022
2 parents 08cb803 + 2907a56 commit cba8954
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:

- name: Globally install symfony/flex
if: matrix.symfony-require != ''
run: composer global require --no-progress --no-scripts --no-plugins symfony/flex
run: |
composer global config --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
- name: Install variant
if: matrix.variant != 'normal' && !startsWith(matrix.variant, 'symfony/symfony')
Expand Down
2 changes: 1 addition & 1 deletion tests/Source/DoctrineORMQuerySourceIteratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ private function createConfiguration(): Configuration

private function createMetadataDriverImplementation(): MappingDriver
{
return new AnnotationDriver(new AnnotationReader()); // @phpstan-ignore-line
return new AnnotationDriver(new AnnotationReader());
}
}

0 comments on commit cba8954

Please sign in to comment.