Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jan 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/Zend/Cache/Storage/Adapter/DbaIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public function current()
public function key()
{
if ($this->currentInternalKey === false) {
throw new Exception\RuntimeException("Iterater is on an invalid state");
throw new Exception\RuntimeException("Iterator is on an invalid state");
}

// remove namespace prefix
Expand All @@ -147,7 +147,7 @@ public function key()
public function next()
{
if ($this->currentInternalKey === false) {
throw new Exception\RuntimeException("Iterater is on an invalid state");
throw new Exception\RuntimeException("Iterator is on an invalid state");
}

$this->currentInternalKey = dba_nextkey($this->handle);
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Ldap/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ protected function markAsNew($new)
* Tells if the node is considered as new (not present on the server)
*
* Please note, that this doesn't tell you if the node is present on the server.
* Use {@link exits()} to see if a node is already there.
* Use {@link exists()} to see if a node is already there.
*
* @return bool
*/
Expand Down