Skip to content

Commit

Permalink
[TASK] Make module pass PHPstan checks
Browse files Browse the repository at this point in the history
[TASK] Make module PSR-2 Compliant
  • Loading branch information
Bart Lubbersen committed Nov 1, 2017
1 parent a614d70 commit bc43ff8
Show file tree
Hide file tree
Showing 13 changed files with 967 additions and 821 deletions.
25 changes: 12 additions & 13 deletions Api/PostcodeManagementInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
/**
* A Magento 2 module named Experius/Postcode
* Copyright (C) 2016 Experius
*
*
* This file included in Experius/Postcode is licensed under OSL 3.0
*
*
* http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* Please see LICENSE.txt for the full text of the OSL 3.0 license
*/
Expand All @@ -14,16 +14,15 @@

interface PostcodeManagementInterface
{

/**
* Set a ponumber on the cart
*
* @param string $postcode.
* @param string $houseNumber
* @param string $houseNumberAddition
* @return string
*/

public function getPostcodeInformation($postcode,$houseNumber,$houseNumberAddition);

* Set a ponumber on the cart
*
* @param string $postcode .
* @param string $houseNumber
* @param string $houseNumberAddition
* @return string
*/

public function getPostcodeInformation(string $postcode, string $houseNumber, string $houseNumberAddition);
}
Loading

0 comments on commit bc43ff8

Please sign in to comment.