/**
  * Create new route
  *
  * @param string[]     				$methods The route HTTP methods
  * @param string       				$pattern The route pattern
  * @param callable     				$callable The route callable
  * @param int          				$identifier The route identifier
  * @param RouteGroup[] 				$groups The parent route groups
  * @param \Zend\Permissions\Acl\Acl 	$acl
  */
 public function __construct($methods, $pattern, $callable, $groups, $identifier, &$acl = null)
 {
     $this->acl =& $acl;
     parent::__construct($methods, $pattern, $callable, $groups, $identifier);
 }
Example #2
0
 public function __construct($pattern, $callable, $caseSensitive = true)
 {
     parent::__construct($pattern, $callable, $caseSensitive = true);
 }