1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
<?php
namespace Net\Bazzline\Component\Curl\Option;
abstract class AbstractSetOptionStringValue implements OptionInterface
{
/** @var mixed */
private $valueForThisOption;
/**
* @param string $valueForThisOption
*/
public function __construct($valueForThisOption)
{
$this->valueForThisOption = $valueForThisOption;
}
/**
* @return string
*/
public function value()
{
return $this->valueForThisOption;
}
}