mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-10 01:03:13 +08:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?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;
|
|
}
|