| 1 | <?php |
||
| 25 | class ProfileService |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var ApiProfileService |
||
| 29 | */ |
||
| 30 | private $apiProfileService; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var LoggerInterface |
||
| 34 | */ |
||
| 35 | private $logger; |
||
| 36 | |||
| 37 | public function __construct( |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param string $identityId |
||
| 47 | * @return null|Profile |
||
| 48 | */ |
||
| 49 | public function findByIdentityId($identityId) |
||
| 53 | } |
||
| 54 |