1
0
mirror of https://github.com/danog/parallel.git synced 2025-01-22 05:51:14 +01:00
parallel/lib/Thread/Internal/Storage.php

33 lines
486 B
PHP
Raw Normal View History

2016-12-29 19:16:04 -06:00
<?php
2016-08-18 11:04:48 -05:00
2017-11-10 09:59:47 -06:00
namespace Amp\Parallel\Thread\Internal;
/**
* @internal
*/
2016-08-18 11:04:48 -05:00
class Storage extends \Threaded {
2016-08-26 10:10:03 -05:00
/** @var mixed */
private $value;
2015-09-03 18:11:58 -05:00
/**
* @param mixed $value
*/
2016-08-18 11:04:48 -05:00
public function __construct($value) {
2015-09-03 18:11:58 -05:00
$this->value = $value;
}
/**
* @return mixed
*/
2016-08-18 11:04:48 -05:00
public function get() {
return $this->value;
}
/**
* @param mixed $value
*/
2016-08-18 11:04:48 -05:00
public function set($value) {
$this->value = $value;
}
}