Created method to updated already created short URLs

This commit is contained in:
Alejandro Celaya
2018-01-07 19:51:25 +01:00
parent 3243ade4fd
commit fac9455a1e
8 changed files with 360 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Rest\Action;
use Interop\Http\ServerMiddleware\DelegateInterface;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
class EditShortCodeAction extends AbstractRestAction
{
/**
* Process an incoming server request and return a response, optionally delegating
* to the next middleware component to create the response.
*
* @param ServerRequestInterface $request
* @param DelegateInterface $delegate
*
* @return ResponseInterface
*/
public function process(ServerRequestInterface $request, DelegateInterface $delegate): ResponseInterface
{
}
}