1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/lib/Sync/Internal/ExitSuccess.php

21 lines
362 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2015-08-07 01:59:25 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Sync\Internal;
2016-08-18 18:04:48 +02:00
class ExitSuccess implements ExitStatus {
2015-08-07 01:59:25 +02:00
/**
* @var mixed
*/
private $result;
2016-08-18 18:04:48 +02:00
public function __construct($result) {
2015-08-07 01:59:25 +02:00
$this->result = $result;
}
/**
* {@inheritdoc}
*/
2016-08-18 18:04:48 +02:00
public function getResult() {
2015-08-07 01:59:25 +02:00
return $this->result;
}
}