Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 0b95e8e

Browse files
authored
Freeze to Doctrine orm 2.9 (#349)
1 parent 99438ef commit 0b95e8e

25 files changed

+47
-29
lines changed

Event/Subscriber/DoctrineDBALSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class DoctrineDBALSubscriber extends AbstractDoctrineSubscriber implements EventSubscriberInterface
1313
{
1414
/**
15-
* {@inheritDoc}
15+
* @return array
1616
*/
1717
public static function getSubscribedEvents()
1818
{

Event/Subscriber/DoctrineMongodbSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
class DoctrineMongodbSubscriber implements EventSubscriberInterface
1717
{
1818
/**
19-
* {@inheritDoc}
19+
* @return array
2020
*/
2121
public static function getSubscribedEvents()
2222
{

Event/Subscriber/DoctrineORMSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
class DoctrineORMSubscriber extends AbstractDoctrineSubscriber implements EventSubscriberInterface
2020
{
2121
/**
22-
* {@inheritDoc}
22+
* @return array
2323
*/
2424
public static function getSubscribedEvents()
2525
{

Filter/Form/FilterExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
class FilterExtension extends AbstractExtension
1414
{
1515
/**
16-
* {@inheritdoc}
16+
* @return array
1717
*/
1818
protected function loadTypes()
1919
{

Filter/Form/Type/BooleanFilterType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ class BooleanFilterType extends AbstractType
1818
const VALUE_NO = 'n';
1919

2020
/**
21-
* {@inheritdoc}
21+
* @return ?string
2222
*/
2323
public function getParent()
2424
{
2525
return ChoiceType::class;
2626
}
2727

2828
/**
29-
* {@inheritdoc}
29+
* @return string
3030
*/
3131
public function getBlockPrefix()
3232
{

Filter/Form/Type/CheckboxFilterType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public function configureOptions(OptionsResolver $resolver)
2828
}
2929

3030
/**
31-
* {@inheritdoc}
31+
* @return ?string
3232
*/
3333
public function getParent()
3434
{
3535
return CheckboxType::class;
3636
}
3737

3838
/**
39-
* {@inheritdoc}
39+
* @return string
4040
*/
4141
public function getBlockPrefix()
4242
{

Filter/Form/Type/ChoiceFilterType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public function configureOptions(OptionsResolver $resolver)
2828
}
2929

3030
/**
31-
* {@inheritdoc}
31+
* @return ?string
3232
*/
3333
public function getParent()
3434
{
3535
return ChoiceType::class;
3636
}
3737

3838
/**
39-
* {@inheritdoc}
39+
* @return string
4040
*/
4141
public function getBlockPrefix()
4242
{

Filter/Form/Type/CollectionAdapterFilterType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ public function configureOptions(OptionsResolver $resolver)
6565
}
6666

6767
/**
68-
* {@inheritdoc}
68+
* @return ?string
6969
*/
7070
public function getParent()
7171
{
7272
return SharedableFilterType::class;
7373
}
7474

7575
/**
76-
* {@inheritdoc}
76+
* @return string
7777
*/
7878
public function getBlockPrefix()
7979
{

Filter/Form/Type/DateFilterType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ public function configureOptions(OptionsResolver $resolver)
2828
}
2929

3030
/**
31-
* {@inheritdoc}
31+
* @return ?string
3232
*/
3333
public function getParent()
3434
{
3535
return DateType::class;
3636
}
3737

3838
/**
39-
* {@inheritdoc}
39+
* @return string
4040
*/
4141
public function getBlockPrefix()
4242
{

Filter/Form/Type/DateRangeFilterType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function configureOptions(OptionsResolver $resolver)
4444
}
4545

4646
/**
47-
* {@inheritdoc}
47+
* @return string
4848
*/
4949
public function getBlockPrefix()
5050
{

0 commit comments

Comments
 (0)