Skip to content

Commit 25dd7c2

Browse files
committed
CS fix
1 parent 75bda43 commit 25dd7c2

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
@@ -63,7 +63,7 @@ public function attach(EventManagerInterface $events)
6363
$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
66-
$this->listeners[] = $events->attach(MvcEvent::EVENT_FINISH, array($this, 'onCorsRequest'), 100);
66+
$this->listeners[] = $events->attach(MvcEvent::EVENT_FINISH, array($this, 'onCorsRequest'), 100);
6767
}
6868

6969
/**

0 commit comments

Comments
 (0)