1 | <?php |
||
9 | class ZfcUserDisplayName extends AbstractHelper |
||
10 | { |
||
11 | /** |
||
12 | * @var AuthenticationService |
||
13 | */ |
||
14 | protected $authService; |
||
15 | |||
16 | /** |
||
17 | * __invoke |
||
18 | * |
||
19 | * @access public |
||
20 | * @param \ZfcUser\Entity\UserInterface $user |
||
21 | * @throws \ZfcUser\Exception\DomainException |
||
22 | * @return String |
||
23 | */ |
||
24 | public function __invoke(User $user = null) |
||
52 | |||
53 | /** |
||
54 | * Get authService. |
||
55 | * |
||
56 | * @return AuthenticationService |
||
57 | */ |
||
58 | public function getAuthService() |
||
62 | |||
63 | /** |
||
64 | * Set authService. |
||
65 | * |
||
66 | * @param AuthenticationService $authService |
||
67 | * @return \ZfcUser\View\Helper\ZfcUserDisplayName |
||
68 | */ |
||
69 | public function setAuthService(AuthenticationService $authService) |
||
74 | } |
||
75 |