ok
Direktori : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/ |
Current File : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/ExitSuccess.php |
<?php namespace Amp\Parallel\Sync; final class ExitSuccess implements ExitResult { /** @var mixed */ private $result; public function __construct($result) { $this->result = $result; } /** * {@inheritdoc} */ public function getResult() { return $this->result; } }