mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
WIP add customer test
This commit is contained in:
parent
7162438837
commit
fc21d1d015
9 changed files with 265 additions and 33 deletions
20
src/Glassboxx/ValueObject/CustomerInterface.php
Normal file
20
src/Glassboxx/ValueObject/CustomerInterface.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Opdavies\Glassboxx\ValueObject;
|
||||
|
||||
interface CustomerInterface
|
||||
{
|
||||
public function __construct(
|
||||
string $firstName,
|
||||
string $lastName,
|
||||
string $emailAddress
|
||||
);
|
||||
|
||||
public function getEmailAddress(): string;
|
||||
|
||||
public function getFirstName(): string;
|
||||
|
||||
public function getLastName(): string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue