Skip to content

Commit

Permalink
Add address contract interface
Browse files Browse the repository at this point in the history
  • Loading branch information
shabayekdes committed Dec 6, 2021
1 parent 26edd69 commit f1c66da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Contracts/AddressContract.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace Shabayek\Payment\Contracts;

/**
* AddressContract interface
* @author Esmail Shabayek <[email protected]>
* @package Shabayek\Payment\Contracts\AddressContract
*/
interface AddressContract
{
/**
* Set address's details.
*
* @return array
*/
public function addressDetails(): array;
}

0 comments on commit f1c66da

Please sign in to comment.