Skip to content

Instantly share code, notes, and snippets.

View dmodaii's full-sized avatar
🎯
Focusing

mocept dmodaii

🎯
Focusing
View GitHub Profile
@dmodaii
dmodaii / CatchAllOptionsRequestsProvider.php
Created August 9, 2016 05:36 — forked from danharper/CatchAllOptionsRequestsProvider.php
Lumen with CORS and OPTIONS requests
<?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
/**
* If the incoming request is an OPTIONS request
* we will register a handler for the requested route
*/
class CatchAllOptionsRequestsProvider extends ServiceProvider {