I hereby claim:
- I am nikolaposa on github.
- I am nikolaposa (https://keybase.io/nikolaposa) on keybase.
- I have a public key ASBwX4wR9MDEXOGIyprtB7YMxKGlYYG1MFmxjtRAzk4Lawo
To claim this, I am signing this object:
<?php | |
declare(strict_types=1); | |
namespace My\Queue; | |
use Pheanstalk\Pheanstalk; | |
use Exception; | |
class BeanstalkdWorker |
<?php | |
declare(strict_types=1); | |
interface UserRepositoryInterface | |
{ | |
public function find(string $id) : User; | |
public function findAll() : UserCollection; | |
} |
I hereby claim:
To claim this, I am signing this object:
<?php | |
final class BirthDate | |
{ | |
private $date; | |
private function __construct(\DateTimeInterface $date = null) | |
{ | |
$this->date = $date; | |
} |
<?php | |
declare(strict_types=1); | |
final class PaidOrdersView implements HandlesEvents | |
{ | |
private $dao; | |
public function __construct(OrderDao $dao) | |
{ |
<?php | |
declare(strict_types=1); | |
namespace My; | |
use Psr\Container\ContainerInterface; | |
final class Dependencies implements ContainerInterface | |
{ |
<?php | |
declare(strict_types=1); | |
namespace My\Model; | |
final class EmailAddress implements ValueObject | |
{ | |
/** @var string */ | |
private $email; |
<?php | |
declare(strict_types=1); | |
final class AnonymizeData | |
{ | |
private $payload; | |
public function __construct(array $payload) | |
{ |