aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/security
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-10-02 17:50:59 +0200
committerArthurHoaro <arthur@hoa.ro>2020-10-13 13:50:11 +0200
commitefb7d21b52eb033530e80e5e49d175e6e3b031f4 (patch)
tree4f34052788a08be1a30cb88c3339ae14e0b7c4da /application/security
parent29c31b7ec6ca48ba37b7eb6da650931fd0cb7164 (diff)
downloadShaarli-efb7d21b52eb033530e80e5e49d175e6e3b031f4.tar.gz
Shaarli-efb7d21b52eb033530e80e5e49d175e6e3b031f4.tar.zst
Shaarli-efb7d21b52eb033530e80e5e49d175e6e3b031f4.zip
Add strict types for bookmarks management
Parameters typing and using strict types overall increase the codebase quality by enforcing the a given parameter will have the expected type. It also removes the need to unnecessary unit tests checking methods behavior with invalid input.
Diffstat (limited to 'application/security')
-rw-r--r--application/security/LoginManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/security/LoginManager.php b/application/security/LoginManager.php
index d74c3118..65048f10 100644
--- a/application/security/LoginManager.php
+++ b/application/security/LoginManager.php
@@ -118,7 +118,7 @@ class LoginManager
118 * 118 *
119 * @return true when the user is logged in, false otherwise 119 * @return true when the user is logged in, false otherwise
120 */ 120 */
121 public function isLoggedIn() 121 public function isLoggedIn(): bool
122 { 122 {
123 if ($this->openShaarli) { 123 if ($this->openShaarli) {
124 return true; 124 return true;