Skip to content

Commit 5be4382

Browse files
committed
4268: Updated comments to remove unused imports (!)
See PHP-CS-Fixer/PHP-CS-Fixer#2814 for details.
1 parent b6cb8be commit 5be4382

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

src/Api/Dto/DailyOccurrence.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use ApiPlatform\OpenApi\Model\Parameter;
1212
use ApiPlatform\OpenApi\Model\Response;
1313
use App\Api\Filter\ElasticSearch\BooleanFilter;
14-
use App\Api\Filter\ElasticSearch\DateFilter;
1514
use App\Api\Filter\ElasticSearch\DateRangeFilter;
1615
use App\Api\Filter\ElasticSearch\IdFilter;
1716
use App\Api\Filter\ElasticSearch\MatchFilter;
@@ -74,7 +73,7 @@
7473
'end' => 'lte',
7574
'updated' => 'gte',
7675
],
77-
// Arguments only exist to provide backward compatibility with filters originally defined by the DateFilter
76+
// Arguments only exist to provide backward compatibility with filters originally defined by the Date filter
7877
arguments: [
7978
'config' => [
8079
'gte' => [

src/Api/Dto/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
'occurrences.end' => 'lte',
7474
'updated' => 'gte',
7575
],
76-
// Arguments only exist to provide backward compatibility with filters originally defined by the DateFilter
76+
// Arguments only exist to provide backward compatibility with filters originally defined by the Date filter
7777
arguments: [
7878
'config' => [
7979
'gte' => [

src/Api/Dto/Location.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use ApiPlatform\OpenApi\Model\Operation;
1111
use ApiPlatform\OpenApi\Model\Parameter;
1212
use ApiPlatform\OpenApi\Model\Response;
13-
use App\Api\Filter\ElasticSearch\DateFilter;
1413
use App\Api\Filter\ElasticSearch\DateRangeFilter;
1514
use App\Api\Filter\ElasticSearch\MatchFilter;
1615
use App\Api\State\LocationRepresentationProvider;
@@ -58,7 +57,7 @@
5857
properties: [
5958
'updated' => 'start',
6059
],
61-
// Arguments only exist to provide backward compatibility with filters originally defined by the DateFilter
60+
// Arguments only exist to provide backward compatibility with filters originally defined by the Date filter
6261
arguments: [
6362
'config' => [
6463
'start' => [

src/Api/Dto/Occurrence.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use ApiPlatform\OpenApi\Model\Operation;
1111
use ApiPlatform\OpenApi\Model\Parameter;
1212
use ApiPlatform\OpenApi\Model\Response;
13-
use App\Api\Filter\ElasticSearch\DateFilter;
1413
use App\Api\Filter\ElasticSearch\DateRangeFilter;
1514
use App\Api\Filter\ElasticSearch\IdFilter;
1615
use App\Api\Filter\ElasticSearch\MatchFilter;
@@ -70,7 +69,7 @@
7069
'end' => 'lte',
7170
'updated' => 'gte',
7271
],
73-
// Arguments only exist to provide backward compatibility with filters originally defined by the DateFilter
72+
// Arguments only exist to provide backward compatibility with filters originally defined by the Date filter
7473
arguments: [
7574
'config' => [
7675
'gte' => [

src/Api/Dto/Organization.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use ApiPlatform\OpenApi\Model\Operation;
1111
use ApiPlatform\OpenApi\Model\Parameter;
1212
use ApiPlatform\OpenApi\Model\Response;
13-
use App\Api\Filter\ElasticSearch\DateFilter;
1413
use App\Api\Filter\ElasticSearch\DateRangeFilter;
1514
use App\Api\Filter\ElasticSearch\MatchFilter;
1615
use App\Api\State\OrganizationRepresentationProvider;
@@ -58,7 +57,7 @@
5857
properties: [
5958
'updated' => 'start',
6059
],
61-
// Arguments only exist to provide backward compatibility with filters originally defined by the DateFilter
60+
// Arguments only exist to provide backward compatibility with filters originally defined by the Date filter
6261
arguments: [
6362
'config' => [
6463
'start' => [

0 commit comments

Comments
 (0)