Skip to content

Commit 8e6dea0

Browse files
committed
Remove inheritdoc
1 parent 0f6f266 commit 8e6dea0

364 files changed

Lines changed: 0 additions & 1639 deletions

File tree

Some content is hidden

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

src/Formatter/ADFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
*/
1818
class ADFormatter implements CountryPostcodeFormatter
1919
{
20-
/**
21-
* {@inheritdoc}
22-
*/
2320
public function format(string $postcode) : ?string
2421
{
2522
if (substr($postcode, 0, 2) === 'AD') {

src/Formatter/AFFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
*/
2121
class AFFormatter implements CountryPostcodeFormatter
2222
{
23-
/**
24-
* {@inheritdoc}
25-
*/
2623
public function format(string $postcode) : ?string
2724
{
2825
if (preg_match('/^[0-9]{4}$/', $postcode) !== 1) {

src/Formatter/AIFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class AIFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if ($postcode === '2640' || $postcode === 'AI2640') {

src/Formatter/ALFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class ALFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if (preg_match('/^[0-9]{4}$/', $postcode) !== 1) {

src/Formatter/AMFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class AMFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if (preg_match('/^[0-9]{4}$/', $postcode) !== 1) {

src/Formatter/AQFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
*/
1616
class AQFormatter implements CountryPostcodeFormatter
1717
{
18-
/**
19-
* {@inheritdoc}
20-
*/
2118
public function format(string $postcode) : ?string
2219
{
2320
if ($postcode === 'BIQQ1ZZ') {

src/Formatter/ARFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class ARFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if (preg_match('/^(([0-9]{4})|([A-Z][0-9]{4}[A-Z]{3}))$/', $postcode) !== 1) {

src/Formatter/ASFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
*/
1818
class ASFormatter implements CountryPostcodeFormatter
1919
{
20-
/**
21-
* {@inheritdoc}
22-
*/
2320
public function format(string $postcode) : ?string
2421
{
2522
$length = strlen($postcode);

src/Formatter/ATFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class ATFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if (preg_match('/^[1-9][0-9]{3}$/', $postcode) !== 1) {

src/Formatter/AUFormatter.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
class AUFormatter implements CountryPostcodeFormatter
1818
{
19-
/**
20-
* {@inheritdoc}
21-
*/
2219
public function format(string $postcode) : ?string
2320
{
2421
if (preg_match('/^[0-9]{4}$/', $postcode) !== 1) {

0 commit comments

Comments
 (0)