Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

ManagerInterface must be interface, remove 'interface' description #2423

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/Zend/Session/Container.php
Expand Up @@ -136,7 +136,7 @@ protected function setManager(Manager $manager = null)
$manager = self::getDefaultManager();
if (!$manager instanceof Manager) {
throw new Exception\InvalidArgumentException(
'Manager provided is invalid; must implement ManagerInterface interface'
'Manager provided is invalid; must implement ManagerInterface'
);
}
}
Expand Down