diff options
Diffstat (limited to 'app/Core')
-rw-r--r-- | app/Core/Ldap/Entries.php | 2 | ||||
-rw-r--r-- | app/Core/Mail/Transport/Mail.php | 2 | ||||
-rw-r--r-- | app/Core/Mail/Transport/Sendmail.php | 2 | ||||
-rw-r--r-- | app/Core/Mail/Transport/Smtp.php | 2 | ||||
-rw-r--r-- | app/Core/User/UserSession.php | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/app/Core/Ldap/Entries.php b/app/Core/Ldap/Entries.php index b0f78fa4..3487541f 100644 --- a/app/Core/Ldap/Entries.php +++ b/app/Core/Ldap/Entries.php @@ -33,7 +33,7 @@ class Entries * Get all entries * * @access public - * @return []Entry + * @return Entry[] */ public function getAll() { diff --git a/app/Core/Mail/Transport/Mail.php b/app/Core/Mail/Transport/Mail.php index 4d833f8f..aff3ee20 100644 --- a/app/Core/Mail/Transport/Mail.php +++ b/app/Core/Mail/Transport/Mail.php @@ -46,7 +46,7 @@ class Mail extends Base implements ClientInterface * Get SwiftMailer transport * * @access protected - * @return \Swift_Transport + * @return \Swift_Transport|\Swift_MailTransport|\Swift_SmtpTransport|\Swift_SendmailTransport */ protected function getTransport() { diff --git a/app/Core/Mail/Transport/Sendmail.php b/app/Core/Mail/Transport/Sendmail.php index 849e3385..039be705 100644 --- a/app/Core/Mail/Transport/Sendmail.php +++ b/app/Core/Mail/Transport/Sendmail.php @@ -16,7 +16,7 @@ class Sendmail extends Mail * Get SwiftMailer transport * * @access protected - * @return \Swift_Transport + * @return \Swift_Transport|\Swift_MailTransport|\Swift_SmtpTransport|\Swift_SendmailTransport */ protected function getTransport() { diff --git a/app/Core/Mail/Transport/Smtp.php b/app/Core/Mail/Transport/Smtp.php index 757408ea..66f0a3aa 100644 --- a/app/Core/Mail/Transport/Smtp.php +++ b/app/Core/Mail/Transport/Smtp.php @@ -16,7 +16,7 @@ class Smtp extends Mail * Get SwiftMailer transport * * @access protected - * @return \Swift_Transport + * @return \Swift_Transport|\Swift_MailTransport|\Swift_SmtpTransport|\Swift_SendmailTransport */ protected function getTransport() { diff --git a/app/Core/User/UserSession.php b/app/Core/User/UserSession.php index d1e0bb93..534e5192 100644 --- a/app/Core/User/UserSession.php +++ b/app/Core/User/UserSession.php @@ -114,7 +114,7 @@ class UserSession extends Base * Get username * * @access public - * @return integer + * @return string */ public function getUsername() { |