Skip to content

Commit 590857e

Browse files
committed
Make classes final
1 parent 7b76bdd commit 590857e

File tree

185 files changed

+185
-185
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+185
-185
lines changed

src/Formatter/ADFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1616
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Andorra
1717
*/
18-
class ADFormatter implements CountryPostcodeFormatter
18+
final class ADFormatter implements CountryPostcodeFormatter
1919
{
2020
public function format(string $postcode) : ?string
2121
{

src/Formatter/AFFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1919
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Afghanistan
2020
*/
21-
class AFFormatter implements CountryPostcodeFormatter
21+
final class AFFormatter implements CountryPostcodeFormatter
2222
{
2323
public function format(string $postcode) : ?string
2424
{

src/Formatter/AIFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1616
*/
17-
class AIFormatter implements CountryPostcodeFormatter
17+
final class AIFormatter implements CountryPostcodeFormatter
1818
{
1919
public function format(string $postcode) : ?string
2020
{

src/Formatter/ALFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1515
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Albania
1616
*/
17-
class ALFormatter implements CountryPostcodeFormatter
17+
final class ALFormatter implements CountryPostcodeFormatter
1818
{
1919
public function format(string $postcode) : ?string
2020
{

src/Formatter/AMFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1515
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Armenia
1616
*/
17-
class AMFormatter implements CountryPostcodeFormatter
17+
final class AMFormatter implements CountryPostcodeFormatter
1818
{
1919
public function format(string $postcode) : ?string
2020
{

src/Formatter/AQFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1515
*/
16-
class AQFormatter implements CountryPostcodeFormatter
16+
final class AQFormatter implements CountryPostcodeFormatter
1717
{
1818
public function format(string $postcode) : ?string
1919
{

src/Formatter/ARFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1515
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Argentina
1616
*/
17-
class ARFormatter implements CountryPostcodeFormatter
17+
final class ARFormatter implements CountryPostcodeFormatter
1818
{
1919
public function format(string $postcode) : ?string
2020
{

src/Formatter/ASFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1616
* @see https://en.wikipedia.org/wiki/Postal_codes_in_American_Samoa
1717
*/
18-
class ASFormatter implements CountryPostcodeFormatter
18+
final class ASFormatter implements CountryPostcodeFormatter
1919
{
2020
public function format(string $postcode) : ?string
2121
{

src/Formatter/ATFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1616
* @see https://en.wikipedia.org/wiki/Postal_codes_in_Austria
1717
*/
18-
class ATFormatter implements CountryPostcodeFormatter
18+
final class ATFormatter implements CountryPostcodeFormatter
1919
{
2020
use StripPrefix;
2121

src/Formatter/AUFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @see https://en.wikipedia.org/wiki/List_of_postal_codes
1515
* @see https://en.wikipedia.org/wiki/Postcodes_in_Australia
1616
*/
17-
class AUFormatter implements CountryPostcodeFormatter
17+
final class AUFormatter implements CountryPostcodeFormatter
1818
{
1919
public function format(string $postcode) : ?string
2020
{

0 commit comments

Comments
 (0)