1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/lib/Threading/Internal/Storage.php

35 lines
530 B
PHP
Raw Normal View History

2016-08-22 06:40:48 +02:00
<?php declare(strict_types = 1);
2016-08-18 18:04:48 +02:00
namespace Amp\Concurrent\Threading\Internal;
/**
* @internal
*/
2016-08-18 18:04:48 +02:00
class Storage extends \Threaded {
/**
* @var mixed
*/
private $value;
2015-09-04 01:11:58 +02:00
/**
* @param mixed $value
*/
2016-08-18 18:04:48 +02:00
public function __construct($value) {
2015-09-04 01:11:58 +02:00
$this->value = $value;
}
/**
* @return mixed
*/
2016-08-18 18:04:48 +02:00
public function get() {
return $this->value;
}
/**
* @param mixed $value
*/
2016-08-18 18:04:48 +02:00
public function set($value) {
$this->value = $value;
}
}