mirror of
https://github.com/danog/parallel.git
synced 2024-11-27 04:44:56 +01:00
21 lines
337 B
PHP
21 lines
337 B
PHP
<?php
|
|
|
|
namespace Amp\Concurrent\Sync\Internal;
|
|
|
|
class ExitSuccess implements ExitStatus {
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
private $result;
|
|
|
|
public function __construct($result) {
|
|
$this->result = $result;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getResult() {
|
|
return $this->result;
|
|
}
|
|
} |