Forked from chukShirley/CustomerRepository.php
Last active
December 25, 2024 19:05
-
-
Save Ocramius/421807420c48835801dfba8e4cbbc208 to your computer and use it in GitHub Desktop.
Repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface CustomerRepository | |
{ | |
public function isPremiumCustomer(CustomerId $customerId) : bool; | |
// ... more API (fetch collections, filter, etc): | |
public function findAllPremiumCustomer() : PremiumCustomersList; | |
public function findAllPremiumCustomerIds() : PremiumCustomersIdList; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// this is your aggregate | |
class Order | |
{ | |
// ... | |
public static function placeForPremiumCustomer( | |
CustomerRepository $existingCustomers, | |
CustomerId $customerId, | |
$foo, | |
$bar | |
) : self { | |
if (! $existingCustomers->isPremiumCustomer($customerId)) { | |
throw CustomerIsNotAPreviousCustomer::fromCustomerId($customerId); | |
} | |
return new self($customerId, $foo, $bar); | |
} | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment