1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 09:37:57 +01:00
parallel/lib/Sync/ExitResult.php
Aaron Piotrowski b654463339
Fix code style
2018-10-07 09:50:45 -05:00

14 lines
295 B
PHP

<?php
namespace Amp\Parallel\Sync;
interface ExitResult
{
/**
* @return mixed Return value of the callable given to the execution context.
*
* @throws \Amp\Parallel\Sync\PanicError If the context exited with an uncaught exception.
*/
public function getResult();
}