summaryrefslogtreecommitdiffstats
path: root/Http/FirewallMap.php
diff options
context:
space:
mode:
authorPiotr Antosik <mail@piotrantosik.com>2013-08-22 00:25:28 +0200
committerPiotr Antosik <mail@piotrantosik.com>2013-09-19 18:46:04 +0200
commit166cd180b8f3179d3b63e839093f1658a24e7822 (patch)
treed4d9de423bb84aff73de1756a22a5518eb3bc43f /Http/FirewallMap.php
parented68104bc3cffe77b574d3f8d0f7efe4983e50fb (diff)
downloadsymfony-security-166cd180b8f3179d3b63e839093f1658a24e7822.zip
symfony-security-166cd180b8f3179d3b63e839093f1658a24e7822.tar.gz
symfony-security-166cd180b8f3179d3b63e839093f1658a24e7822.tar.bz2
Added doc comments
Diffstat (limited to 'Http/FirewallMap.php')
-rw-r--r--Http/FirewallMap.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/Http/FirewallMap.php b/Http/FirewallMap.php
index dfc0984..0554bed 100644
--- a/Http/FirewallMap.php
+++ b/Http/FirewallMap.php
@@ -25,11 +25,19 @@ class FirewallMap implements FirewallMapInterface
{
private $map = array();
+ /**
+ * @param RequestMatcherInterface $requestMatcher
+ * @param array $listeners
+ * @param ExceptionListener $exceptionListener
+ */
public function add(RequestMatcherInterface $requestMatcher = null, array $listeners = array(), ExceptionListener $exceptionListener = null)
{
$this->map[] = array($requestMatcher, $listeners, $exceptionListener);
}
+ /**
+ * {@inheritDoc}
+ */
public function getListeners(Request $request)
{
foreach ($this->map as $elements) {