Skip to content

Commit 55e4650

Browse files
authored
Merge pull request #122 from JerrySmidt/master
4.0.0
2 parents cf6ee5f + eb6cb2c commit 55e4650

File tree

109 files changed

+360
-277
lines changed

Some content is hidden

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

109 files changed

+360
-277
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# .gitignore for M2-Postcode.nl module by Flekto
21
.DS_Store
32
vendor
43
composer.lock

Api/Data/Autocomplete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data;
3+
namespace PostcodeEu\AddressValidation\Api\Data;
44

55
class Autocomplete implements AutocompleteInterface
66
{

Api/Data/Autocomplete/AutocompleteMatch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\Autocomplete;
3+
namespace PostcodeEu\AddressValidation\Api\Data\Autocomplete;
44

55
class AutocompleteMatch implements MatchInterface
66
{

Api/Data/Autocomplete/AutocompleteMatch/HighlightInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\Autocomplete\AutocompleteMatch;
3+
namespace PostcodeEu\AddressValidation\Api\Data\Autocomplete\AutocompleteMatch;
44

55
interface HighlightInterface
66
{

Api/Data/Autocomplete/MatchInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\Autocomplete;
3+
namespace PostcodeEu\AddressValidation\Api\Data\Autocomplete;
44

55
interface MatchInterface
66
{
@@ -30,7 +30,7 @@ public function getPrecision(): string;
3030
public function getContext(): string;
3131

3232
/**
33-
* @return Flekto\Postcode\Api\Data\Autocomplete\AutocompleteMatch\HighlightInterface[]
33+
* @return PostcodeEu\AddressValidation\Api\Data\Autocomplete\AutocompleteMatch\HighlightInterface[]
3434
*/
3535
public function getHighlights(): array;
3636
}

Api/Data/AutocompleteInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data;
3+
namespace PostcodeEu\AddressValidation\Api\Data;
44

55
interface AutocompleteInterface
66
{
77
/**
8-
* @return Flekto\Postcode\Api\Data\Autocomplete\MatchInterface[]
8+
* @return PostcodeEu\AddressValidation\Api\Data\Autocomplete\MatchInterface[]
99
*/
1010
public function getMatches(): array;
1111

@@ -25,7 +25,7 @@ public function getMessage(): ?string;
2525
public function getException(): ?string;
2626

2727
/**
28-
* @return Flekto\Postcode\Api\Data\MagentoDebugInfoInterface|null
28+
* @return PostcodeEu\AddressValidation\Api\Data\MagentoDebugInfoInterface|null
2929
*/
3030
public function getMagentoDebugInfo(): ?MagentoDebugInfoInterface;
3131
}

Api/Data/MagentoDebugInfo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data;
3+
namespace PostcodeEu\AddressValidation\Api\Data;
44

55
class MagentoDebugInfo implements MagentoDebugInfoInterface
66
{

Api/Data/MagentoDebugInfo/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\MagentoDebugInfo;
3+
namespace PostcodeEu\AddressValidation\Api\Data\MagentoDebugInfo;
44

55
class Configuration implements ConfigurationInterface
66
{

Api/Data/MagentoDebugInfo/ConfigurationInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\MagentoDebugInfo;
3+
namespace PostcodeEu\AddressValidation\Api\Data\MagentoDebugInfo;
44

55
interface ConfigurationInterface
66
{

Api/Data/MagentoDebugInfo/MagentoModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Flekto\Postcode\Api\Data\MagentoDebugInfo;
3+
namespace PostcodeEu\AddressValidation\Api\Data\MagentoDebugInfo;
44

55
class MagentoModule implements MagentoModuleInterface
66
{

0 commit comments

Comments
 (0)