Files
parallel/lib/Sync/Internal/ExitSuccess.php
2017-01-16 23:24:59 -06:00

19 lines
323 B
PHP

<?php
namespace Amp\Parallel\Sync\Internal;
class ExitSuccess implements ExitResult {
/** @var mixed */
private $result;
public function __construct($result) {
$this->result = $result;
}
/**
* {@inheritdoc}
*/
public function getResult() {
return $this->result;
}
}