Dropped Integrations module and created LICENSE files for new modules

This commit is contained in:
Alejandro Celaya
2019-08-11 13:20:18 +02:00
parent 15bd839940
commit 8f929c0ee3
13 changed files with 85 additions and 43 deletions

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Rest\Middleware;
use Zend\Diactoros\Response\EmptyResponse;
use Zend\Expressive\Router\Middleware\ImplicitOptionsMiddleware;
class EmptyResponseImplicitOptionsMiddlewareFactory
{
public function __invoke()
{
return new ImplicitOptionsMiddleware(function () {
return new EmptyResponse();
});
}
}