forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(doctrine): fix BC break about final filters (api-platform#5815)
- Loading branch information
1 parent
2c86ca3
commit fb8cfef
Showing
14 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,10 @@ | |
* @author Amrouche Hamza <[email protected]> | ||
* @author Teoh Han Hui <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class BooleanFilter extends AbstractFilter | ||
class BooleanFilter extends AbstractFilter | ||
{ | ||
use BooleanFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,10 @@ | |
* @author Kévin Dunglas <[email protected]> | ||
* @author Théo FIDRY <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class DateFilter extends AbstractFilter implements DateFilterInterface | ||
class DateFilter extends AbstractFilter implements DateFilterInterface | ||
{ | ||
use DateFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,8 +34,10 @@ | |
* | ||
* @author Teoh Han Hui <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class ExistsFilter extends AbstractFilter implements ExistsFilterInterface | ||
class ExistsFilter extends AbstractFilter implements ExistsFilterInterface | ||
{ | ||
use ExistsFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,8 +29,10 @@ | |
* @author Amrouche Hamza <[email protected]> | ||
* @author Teoh Han Hui <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class NumericFilter extends AbstractFilter | ||
class NumericFilter extends AbstractFilter | ||
{ | ||
use NumericFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,8 +34,10 @@ | |
* @author Kévin Dunglas <[email protected]> | ||
* @author Théo FIDRY <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class OrderFilter extends AbstractFilter implements OrderFilterInterface | ||
class OrderFilter extends AbstractFilter implements OrderFilterInterface | ||
{ | ||
use OrderFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,10 @@ | |
* | ||
* @author Lee Siong Chan <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class RangeFilter extends AbstractFilter implements RangeFilterInterface | ||
class RangeFilter extends AbstractFilter implements RangeFilterInterface | ||
{ | ||
use RangeFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,8 +34,10 @@ | |
* | ||
* @author Kévin Dunglas <[email protected]> | ||
* @author Alan Poulain <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class SearchFilter extends AbstractFilter implements SearchFilterInterface | ||
class SearchFilter extends AbstractFilter implements SearchFilterInterface | ||
{ | ||
use SearchFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,10 @@ | |
* | ||
* @author Amrouche Hamza <[email protected]> | ||
* @author Teoh Han Hui <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class BooleanFilter extends AbstractFilter | ||
class BooleanFilter extends AbstractFilter | ||
{ | ||
use BooleanFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,10 @@ | |
* | ||
* @author Kévin Dunglas <[email protected]> | ||
* @author Théo FIDRY <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class DateFilter extends AbstractFilter implements DateFilterInterface | ||
class DateFilter extends AbstractFilter implements DateFilterInterface | ||
{ | ||
use DateFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,8 +36,10 @@ | |
* Interpretation: filter products which have a brand | ||
* | ||
* @author Teoh Han Hui <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class ExistsFilter extends AbstractFilter implements ExistsFilterInterface | ||
class ExistsFilter extends AbstractFilter implements ExistsFilterInterface | ||
{ | ||
use ExistsFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,10 @@ | |
* | ||
* @author Amrouche Hamza <[email protected]> | ||
* @author Teoh Han Hui <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class NumericFilter extends AbstractFilter | ||
class NumericFilter extends AbstractFilter | ||
{ | ||
use NumericFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,10 @@ | |
* | ||
* @author Kévin Dunglas <[email protected]> | ||
* @author Théo FIDRY <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class OrderFilter extends AbstractFilter implements OrderFilterInterface | ||
class OrderFilter extends AbstractFilter implements OrderFilterInterface | ||
{ | ||
use OrderFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,10 @@ | |
* Filters the collection by range. | ||
* | ||
* @author Lee Siong Chan <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class RangeFilter extends AbstractFilter implements RangeFilterInterface | ||
class RangeFilter extends AbstractFilter implements RangeFilterInterface | ||
{ | ||
use RangeFilterTrait; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,8 +33,10 @@ | |
* Filter the collection by given properties. | ||
* | ||
* @author Kévin Dunglas <[email protected]> | ||
* | ||
* @final | ||
*/ | ||
final class SearchFilter extends AbstractFilter implements SearchFilterInterface | ||
class SearchFilter extends AbstractFilter implements SearchFilterInterface | ||
{ | ||
use SearchFilterTrait; | ||
|
||
|