control-freak-ide/server/nodejs/util/docscripts/lib/parser/DojoString.php
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

18 lines
271 B
PHP

<?php
class DojoString
{
private $object = 'DojoString';
private $value = '';
public function __construct($string){
$this->value = preg_replace('%(^[\'"]|["\']$)%', '', $string);
}
public function getValue(){
return $this->value;
}
}
?>