diff options
author | VirtualTam <virtualtam@flibidi.net> | 2017-01-06 18:54:29 +0100 |
---|---|---|
committer | VirtualTam <virtualtam+github@flibidi.net> | 2017-01-07 14:37:40 +0100 |
commit | ee6f4b64a91d76070f930cdf7602ab4686714c7a (patch) | |
tree | 29056ef186c14a08d9ce7e1aa7514fa98bd2197e /application/Updater.php | |
parent | 7418f7cb60524c3bfc2f240386b5e3e7eb9b3257 (diff) | |
download | Shaarli-ee6f4b64a91d76070f930cdf7602ab4686714c7a.tar.gz Shaarli-ee6f4b64a91d76070f930cdf7602ab4686714c7a.tar.zst Shaarli-ee6f4b64a91d76070f930cdf7602ab4686714c7a.zip |
Cleanup: use safe boolean comparisons
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'application/Updater.php')
-rw-r--r-- | application/Updater.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/Updater.php b/application/Updater.php index 621c7238..704ce7ab 100644 --- a/application/Updater.php +++ b/application/Updater.php | |||
@@ -69,7 +69,7 @@ class Updater | |||
69 | return $updatesRan; | 69 | return $updatesRan; |
70 | } | 70 | } |
71 | 71 | ||
72 | if ($this->methods == null) { | 72 | if ($this->methods === null) { |
73 | throw new UpdaterException('Couldn\'t retrieve Updater class methods.'); | 73 | throw new UpdaterException('Couldn\'t retrieve Updater class methods.'); |
74 | } | 74 | } |
75 | 75 | ||