1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 10:38:30 +01:00
parallel/lib/Threading/Internal/Storage.php
2016-08-21 23:40:48 -05:00

35 lines
530 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Concurrent\Threading\Internal;
/**
* @internal
*/
class Storage 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) {
$this->value = $value;
}
}