Skip to content

Commit 23facdc

Browse files
committed
Fix CS
1 parent 25dd7c2 commit 23facdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ZfrCors/Mvc/CorsRequestListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct(CorsService $corsService)
6060
public function attach(EventManagerInterface $events)
6161
{
6262
// Preflight can be handled during the route event, and should return early
63-
$this->listeners[] = $events->attach(MvcEvent::EVENT_ROUTE, array($this, 'onCorsPreflight'), -1);
63+
$this->listeners[] = $events->attach(MvcEvent::EVENT_ROUTE, array($this, 'onCorsPreflight'), -1);
6464

6565
// "in"flight should be handled during "FINISH" to ensure we operate on the actual route being returned
6666
$this->listeners[] = $events->attach(MvcEvent::EVENT_FINISH, array($this, 'onCorsRequest'), 100);

0 commit comments

Comments
 (0)