| 1 | <?php  | 
            ||
| 21 | class SuluUserRepositoryAdapter implements UserRepositoryInterface  | 
            ||
| 22 | { | 
            ||
| 23 | private $userRepository;  | 
            ||
| 24 | |||
| 25 | public function __construct(SuluUserRepositoryInterface $userRepository)  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * @param string $id  | 
            ||
| 32 | *  | 
            ||
| 33 | * @return UserInterface  | 
            ||
| 34 | */  | 
            ||
| 35 | public function findOneById($id)  | 
            ||
| 39 | }  | 
            ||
| 40 |