Created TaskRunnerTest

This commit is contained in:
Alejandro Celaya
2019-07-19 20:59:06 +02:00
parent af40e8de5c
commit af4ee8f7ec
6 changed files with 158 additions and 39 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\EventDispatcher\Async;
use Psr\Container\ContainerInterface;
interface TaskInterface
{
public function run(ContainerInterface $container): void;
public function toString(): string;
}