Skip to content

Commit 1c60af2

Browse files
committed
Run new php-cs-fixer against the code
1 parent d78fdf6 commit 1c60af2

File tree

9 files changed

+34
-0
lines changed

9 files changed

+34
-0
lines changed

src/Database/Reader.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ class Reader implements ProviderInterface
4040
* @var DbReader
4141
*/
4242
private $dbReader;
43+
4344
/**
4445
* @var string
4546
*/
4647
private $dbType;
48+
4749
/**
4850
* @var array<string>
4951
*/

src/Model/AnonymousIp.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,30 +35,37 @@ class AnonymousIp extends AbstractModel
3535
* @var bool
3636
*/
3737
protected $isAnonymous;
38+
3839
/**
3940
* @var bool
4041
*/
4142
protected $isAnonymousVpn;
43+
4244
/**
4345
* @var bool
4446
*/
4547
protected $isHostingProvider;
48+
4649
/**
4750
* @var bool
4851
*/
4952
protected $isPublicProxy;
53+
5054
/**
5155
* @var bool
5256
*/
5357
protected $isResidentialProxy;
58+
5459
/**
5560
* @var bool
5661
*/
5762
protected $isTorExitNode;
63+
5864
/**
5965
* @var string
6066
*/
6167
protected $ipAddress;
68+
6269
/**
6370
* @var string
6471
*/

src/Model/Asn.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,17 @@ class Asn extends AbstractModel
2626
* @var int|null
2727
*/
2828
protected $autonomousSystemNumber;
29+
2930
/**
3031
* @var string|null
3132
*/
3233
protected $autonomousSystemOrganization;
34+
3335
/**
3436
* @var string
3537
*/
3638
protected $ipAddress;
39+
3740
/**
3841
* @var string
3942
*/

src/Model/City.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,21 @@ class City extends Country
3737
* @var \GeoIp2\Record\City
3838
*/
3939
protected $city;
40+
4041
/**
4142
* @ignore
4243
*
4344
* @var \GeoIp2\Record\Location
4445
*/
4546
protected $location;
47+
4648
/**
4749
* @ignore
4850
*
4951
* @var \GeoIp2\Record\Postal
5052
*/
5153
protected $postal;
54+
5255
/**
5356
* @ignore
5457
*

src/Model/ConnectionType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ class ConnectionType extends AbstractModel
2424
* @var string|null
2525
*/
2626
protected $connectionType;
27+
2728
/**
2829
* @var string
2930
*/
3031
protected $ipAddress;
32+
3133
/**
3234
* @var string
3335
*/

src/Model/Country.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,32 @@ class Country extends AbstractModel
3434
* @var \GeoIp2\Record\Continent
3535
*/
3636
protected $continent;
37+
3738
/**
3839
* @var \GeoIp2\Record\Country
3940
*/
4041
protected $country;
42+
4143
/**
4244
* @var array<string>
4345
*/
4446
protected $locales;
47+
4548
/**
4649
* @var \GeoIp2\Record\MaxMind
4750
*/
4851
protected $maxmind;
52+
4953
/**
5054
* @var \GeoIp2\Record\Country
5155
*/
5256
protected $registeredCountry;
57+
5358
/**
5459
* @var \GeoIp2\Record\RepresentedCountry
5560
*/
5661
protected $representedCountry;
62+
5763
/**
5864
* @var \GeoIp2\Record\Traits
5965
*/

src/Model/Domain.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ class Domain extends AbstractModel
2424
* @var string|null
2525
*/
2626
protected $domain;
27+
2728
/**
2829
* @var string
2930
*/
3031
protected $ipAddress;
32+
3133
/**
3234
* @var string
3335
*/

src/Model/Isp.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,30 +36,37 @@ class Isp extends AbstractModel
3636
* @var int|null
3737
*/
3838
protected $autonomousSystemNumber;
39+
3940
/**
4041
* @var string|null
4142
*/
4243
protected $autonomousSystemOrganization;
44+
4345
/**
4446
* @var string|null
4547
*/
4648
protected $isp;
49+
4750
/**
4851
* @var string|null
4952
*/
5053
protected $mobileCountryCode;
54+
5155
/**
5256
* @var string|null
5357
*/
5458
protected $mobileNetworkCode;
59+
5560
/**
5661
* @var string|null
5762
*/
5863
protected $organization;
64+
5965
/**
6066
* @var string
6167
*/
6268
protected $ipAddress;
69+
6370
/**
6471
* @var string
6572
*/

src/WebService/Client.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ class Client implements ProviderInterface
5252
* @var array<string>
5353
*/
5454
private $locales;
55+
5556
/**
5657
* @var WsClient
5758
*/
5859
private $client;
60+
5961
/**
6062
* @var string
6163
*/

0 commit comments

Comments
 (0)