mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
20 lines
367 B
PHP
20 lines
367 B
PHP
<?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;
|
|
}
|