removed superfluous public modifier from interface methods

This commit is contained in:
Christian Raue 2012-04-24 19:15:04 +02:00
parent 5ed9dbe632
commit f287f0804d
4 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ interface CsrfProviderInterface
* @param string $intention Some value that identifies the action intention
* (i.e. "authenticate"). Doesn't have to be a secret value.
*/
public function generateCsrfToken($intention);
function generateCsrfToken($intention);
/**
* Validates a CSRF token.
@ -45,5 +45,5 @@ interface CsrfProviderInterface
*
* @return Boolean Whether the token supplied by the browser is correct
*/
public function isCsrfTokenValid($intention, $token);
function isCsrfTokenValid($intention, $token);
}

View File

@ -26,7 +26,7 @@ interface FlashBagInterface extends SessionBagInterface
* @param string $type
* @param string $message
*/
public function add($type, $message);
function add($type, $message);
/**
* Registers a message for a given type.

View File

@ -179,7 +179,7 @@ interface SessionInterface
*
* @param SessionBagInterface $bag
*/
public function registerBag(SessionBagInterface $bag);
function registerBag(SessionBagInterface $bag);
/**
* Gets a bag instance by name.
@ -188,12 +188,12 @@ interface SessionInterface
*
* @return SessionBagInterface
*/
public function getBag($name);
function getBag($name);
/**
* Gets session meta.
*
* @return MetadataBag
*/
public function getMetadataBag();
function getMetadataBag();
}

View File

@ -34,5 +34,5 @@ interface ExtractorInterface
*
* @param string $prefix The prefix
*/
public function setPrefix($prefix);
function setPrefix($prefix);
}