Skip to content

Commit acb817d

Browse files
committed
Remove deprecated provider factories
1 parent fe24ecb commit acb817d

File tree

6 files changed

+0
-132
lines changed

6 files changed

+0
-132
lines changed

src/ProviderFactory/GeoIPsFactory.php

Lines changed: 0 additions & 53 deletions
This file was deleted.

src/ProviderFactory/MapzenFactory.php

Lines changed: 0 additions & 53 deletions
This file was deleted.

tests/Functional/ProviderFactoryTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
use Geocoder\Provider\FreeGeoIp\FreeGeoIp;
2121
use Geocoder\Provider\Geoip\Geoip;
2222
use Geocoder\Provider\GeoIP2\GeoIP2;
23-
use Geocoder\Provider\GeoIPs\GeoIPs;
2423
use Geocoder\Provider\Geonames\Geonames;
2524
use Geocoder\Provider\GeoPlugin\GeoPlugin;
2625
use Geocoder\Provider\GoogleMaps\GoogleMaps;
@@ -33,7 +32,6 @@
3332
use Geocoder\Provider\LocationIQ\LocationIQ;
3433
use Geocoder\Provider\Mapbox\Mapbox;
3534
use Geocoder\Provider\MapQuest\MapQuest;
36-
use Geocoder\Provider\Mapzen\Mapzen;
3735
use Geocoder\Provider\MaxMind\MaxMind;
3836
use Geocoder\Provider\MaxMindBinary\MaxMindBinary;
3937
use Geocoder\Provider\Nominatim\Nominatim;
@@ -107,9 +105,6 @@ public function getProviders(): iterable
107105
yield [FreeGeoIp::class, ['empty', 'acme']];
108106
// yield [Geoip::class, ['empty']];
109107
yield [GeoIP2::class, ['acme']];
110-
if (class_exists(GeoIPs::class)) {
111-
yield [GeoIPs::class, ['acme']];
112-
}
113108
yield [Geonames::class, ['acme']];
114109
yield [GeoPlugin::class, ['empty']];
115110
yield [GoogleMaps::class, ['empty']];
@@ -122,9 +117,6 @@ public function getProviders(): iterable
122117
yield [LocationIQ::class, ['acme']];
123118
yield [Mapbox::class, ['acme']];
124119
yield [MapQuest::class, ['acme']];
125-
if (class_exists(Mapzen::class)) {
126-
yield [Mapzen::class, ['acme']];
127-
}
128120
yield [MaxMind::class, ['acme']];
129121
yield [MaxMindBinary::class, ['acme']];
130122
yield [Nominatim::class, ['empty', 'acme']];

tests/Functional/config/provider/geoips.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/Functional/config/provider/mapzen.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/baseline-ignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
%Bazinga\\GeocoderBundle\\ProviderFactory\\GeoIPsFactory is deprecated since 5.6, to be removed in 6.0%
2-
%Bazinga\\GeocoderBundle\\ProviderFactory\\MapzenFactory is deprecated since 5.6, to be removed in 6.0%
31
%Since doctrine/doctrine-bundle 2.11: Not setting "enable_lazy_ghost_objects" to true is deprecated%
42
%Not configuring a schema manager factory is deprecated. Use Doctrine\\DBAL\\Schema\\DefaultSchemaManagerFactory which is going to be the default in DBAL 4%
53
%Doctrine\\DBAL\\Configuration::setSQLLogger is deprecated, use setMiddlewares\(\) and Logging\\Middleware instead%

0 commit comments

Comments
 (0)