mirror of
https://github.com/danog/amp.git
synced 2024-12-03 18:07:57 +01:00
9 lines
107 B
PHP
9 lines
107 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Amp;
|
|
|
|
interface CallbackStub
|
|
{
|
|
public function __invoke();
|
|
}
|