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

Commit

Permalink
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/AbstractManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,4 @@ public function getSaveHandler()
{
return $this->saveHandler;
}
}
}
2 changes: 1 addition & 1 deletion src/Config/StandardConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -812,4 +812,4 @@ public function __call($method, $args)
));
}
}
}
}
2 changes: 1 addition & 1 deletion src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

class BadMethodCallException extends \BadMethodCallException implements
ExceptionInterface
{}
{}
2 changes: 1 addition & 1 deletion src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
* @package Zend_Session
*/
interface ExceptionInterface
{}
{}
2 changes: 1 addition & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
{}
2 changes: 1 addition & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
namespace Zend\Session\Exception;

class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
{}
2 changes: 1 addition & 1 deletion src/ManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ public function expireSessionCookie();
public function setValidatorChain(EventManagerInterface $chain);
public function getValidatorChain();
public function isValid();
}
}
2 changes: 1 addition & 1 deletion src/SaveHandler/DbTableGatewayOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,4 @@ public function getModifiedColumn()
{
return $this->modifiedColumn;
}
}
}
2 changes: 1 addition & 1 deletion src/SessionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,4 @@ protected function registerSaveHandler(SaveHandler\SaveHandlerInterface $saveHan
array($saveHandler, 'gc')
);
}
}
}
2 changes: 1 addition & 1 deletion src/Storage/ArrayStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,4 +336,4 @@ public function toArray()
}
return $values;
}
}
}
2 changes: 1 addition & 1 deletion src/Storage/StorageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ public function clear($key = null);

public function fromArray(array $array);
public function toArray();
}
}
2 changes: 1 addition & 1 deletion src/Validator/HttpUserAgent.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ public function getName()
{
return __CLASS__;
}
}
}
2 changes: 1 addition & 1 deletion src/ValidatorChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ public function getStorage()
{
return $this->storage;
}
}
}

0 comments on commit 3a8340e

Please sign in to comment.