Skip to content

Commit 2120d58

Browse files
committed
CS
1 parent a5a8f9c commit 2120d58

16 files changed

+34
-19
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ reusable-steps:
1313
run:
1414
name: Disable Xdebug PHP extension
1515
command: sudo rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
16+
- &install-doctrine-mongodb-odm
17+
run:
18+
name: Install Doctrine MongoDB ODM
19+
command: composer require --prefer-dist --no-progress --no-suggest --no-update --ansi doctrine/mongodb-odm:^2.0.0@beta doctrine/mongodb-odm-bundle:^4.0.0@beta
1620
- &install-php-extensions
1721
run:
1822
name: Install PHP extensions
@@ -87,10 +91,6 @@ reusable-steps:
8791
run:
8892
name: Update Composer
8993
command: sudo composer self-update
90-
- &install-doctrine-mongodb-odm
91-
run:
92-
name: Install Doctrine MongoDB ODM
93-
command: composer require --prefer-dist --no-progress --no-suggest --no-update --ansi doctrine/mongodb-odm:^2.0.0@beta doctrine/mongodb-odm-bundle:^4.0.0@beta
9494
- &update-project-dependencies
9595
run:
9696
name: Update project dependencies

tests/Bridge/Doctrine/MongoDbOdm/CollectionDataProviderTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
use PHPUnit\Framework\TestCase;
2828

2929
/**
30-
* @author Alan Poulain <[email protected]>
3130
* @group mongodb
31+
*
32+
* @author Alan Poulain <[email protected]>
3233
*/
3334
class CollectionDataProviderTest extends TestCase
3435
{

tests/Bridge/Doctrine/MongoDbOdm/Extension/FilterExtensionTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
use Psr\Container\ContainerInterface;
2525

2626
/**
27-
* @author Alan Poulain <[email protected]>
2827
* @group mongodb
28+
*
29+
* @author Alan Poulain <[email protected]>
2930
*/
3031
class FilterExtensionTest extends TestCase
3132
{

tests/Bridge/Doctrine/MongoDbOdm/Extension/OrderExtensionTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
use PHPUnit\Framework\TestCase;
2626

2727
/**
28-
* @author Alan Poulain <[email protected]>
2928
* @group mongodb
29+
*
30+
* @author Alan Poulain <[email protected]>
3031
*/
3132
class OrderExtensionTest extends TestCase
3233
{

tests/Bridge/Doctrine/MongoDbOdm/Extension/PaginationExtensionTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@
3434
use PHPUnit\Framework\TestCase;
3535

3636
/**
37-
* @author Alan Poulain <[email protected]>
3837
* @group mongodb
38+
*
39+
* @author Alan Poulain <[email protected]>
3940
*/
4041
class PaginationExtensionTest extends TestCase
4142
{

tests/Bridge/Doctrine/MongoDbOdm/Filter/BooleanFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
use ApiPlatform\Core\Tests\Bridge\Doctrine\Common\Filter\BooleanFilterTestTrait;
1919

2020
/**
21-
* @author Alan Poulain <[email protected]>
2221
* @group mongodb
22+
*
23+
* @author Alan Poulain <[email protected]>
2324
*/
2425
class BooleanFilterTest extends DoctrineMongoDbOdmFilterTestCase
2526
{

tests/Bridge/Doctrine/MongoDbOdm/Filter/DateFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
use MongoDB\BSON\UTCDateTime;
2020

2121
/**
22-
* @author Alan Poulain <[email protected]>
2322
* @group mongodb
23+
*
24+
* @author Alan Poulain <[email protected]>
2425
*/
2526
class DateFilterTest extends DoctrineMongoDbOdmFilterTestCase
2627
{

tests/Bridge/Doctrine/MongoDbOdm/Filter/ExistsFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
use ApiPlatform\Core\Tests\Bridge\Doctrine\Common\Filter\ExistsFilterTestTrait;
1919

2020
/**
21-
* @author Alan Poulain <[email protected]>
2221
* @group mongodb
22+
*
23+
* @author Alan Poulain <[email protected]>
2324
*/
2425
class ExistsFilterTest extends DoctrineMongoDbOdmFilterTestCase
2526
{

tests/Bridge/Doctrine/MongoDbOdm/Filter/NumericFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
use ApiPlatform\Core\Tests\Bridge\Doctrine\Common\Filter\NumericFilterTestTrait;
1919

2020
/**
21-
* @author Alan Poulain <[email protected]>
2221
* @group mongodb
22+
*
23+
* @author Alan Poulain <[email protected]>
2324
*/
2425
class NumericFilterTest extends DoctrineMongoDbOdmFilterTestCase
2526
{

tests/Bridge/Doctrine/MongoDbOdm/Filter/OrderFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@
1919
use Doctrine\Common\Persistence\ManagerRegistry;
2020

2121
/**
22-
* @author Alan Poulain <[email protected]>
2322
* @group mongodb
23+
*
24+
* @author Alan Poulain <[email protected]>
2425
*/
2526
class OrderFilterTest extends DoctrineMongoDbOdmFilterTestCase
2627
{

0 commit comments

Comments
 (0)