diff options
Diffstat (limited to 'application')
-rw-r--r-- | application/LinkDB.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/application/LinkDB.php b/application/LinkDB.php index f5f209f6..c8b162b6 100644 --- a/application/LinkDB.php +++ b/application/LinkDB.php | |||
@@ -87,7 +87,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
87 | * @param string $redirector link redirector set in user settings. | 87 | * @param string $redirector link redirector set in user settings. |
88 | * @param boolean $redirectorEncode Enable urlencode on redirected urls (default: true). | 88 | * @param boolean $redirectorEncode Enable urlencode on redirected urls (default: true). |
89 | */ | 89 | */ |
90 | function __construct( | 90 | public function __construct( |
91 | $datastore, | 91 | $datastore, |
92 | $isLoggedIn, | 92 | $isLoggedIn, |
93 | $hidePublicLinks, | 93 | $hidePublicLinks, |
@@ -164,7 +164,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
164 | /** | 164 | /** |
165 | * Iterator - Returns the current element | 165 | * Iterator - Returns the current element |
166 | */ | 166 | */ |
167 | function current() | 167 | public function current() |
168 | { | 168 | { |
169 | return $this->links[$this->keys[$this->position]]; | 169 | return $this->links[$this->keys[$this->position]]; |
170 | } | 170 | } |
@@ -172,7 +172,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
172 | /** | 172 | /** |
173 | * Iterator - Returns the key of the current element | 173 | * Iterator - Returns the key of the current element |
174 | */ | 174 | */ |
175 | function key() | 175 | public function key() |
176 | { | 176 | { |
177 | return $this->keys[$this->position]; | 177 | return $this->keys[$this->position]; |
178 | } | 178 | } |
@@ -180,7 +180,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
180 | /** | 180 | /** |
181 | * Iterator - Moves forward to next element | 181 | * Iterator - Moves forward to next element |
182 | */ | 182 | */ |
183 | function next() | 183 | public function next() |
184 | { | 184 | { |
185 | ++$this->position; | 185 | ++$this->position; |
186 | } | 186 | } |
@@ -190,7 +190,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
190 | * | 190 | * |
191 | * Entries are sorted by date (latest first) | 191 | * Entries are sorted by date (latest first) |
192 | */ | 192 | */ |
193 | function rewind() | 193 | public function rewind() |
194 | { | 194 | { |
195 | $this->keys = array_keys($this->links); | 195 | $this->keys = array_keys($this->links); |
196 | rsort($this->keys); | 196 | rsort($this->keys); |
@@ -200,7 +200,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
200 | /** | 200 | /** |
201 | * Iterator - Checks if current position is valid | 201 | * Iterator - Checks if current position is valid |
202 | */ | 202 | */ |
203 | function valid() | 203 | public function valid() |
204 | { | 204 | { |
205 | return isset($this->keys[$this->position]); | 205 | return isset($this->keys[$this->position]); |
206 | } | 206 | } |