Subversion Repositories oidplus

Rev

Rev 1116 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1116 Rev 1130
Line 154... Line 154...
154
 
154
 
155
        /**
155
        /**
156
         * @param string $email
156
         * @param string $email
157
         * @return bool
157
         * @return bool
158
         */
158
         */
159
        public function isRaLoggedIn(string $email) {
159
        public function isRaLoggedIn(string $email): bool {
160
                foreach ($this->loggedInRaList() as $ra) {
160
                foreach ($this->loggedInRaList() as $ra) {
161
                        if ($email == $ra->raEmail()) return true;
161
                        if ($email == $ra->raEmail()) return true;
162
                }
162
                }
163
                return false;
163
                return false;
164
        }
164
        }