1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-27 04:44:56 +01:00
parallel/lib/Sync/Internal/ExitSuccess.php
2016-12-29 19:16:04 -06:00

19 lines
323 B
PHP

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