setConfig() public method

Set configuration
public setConfig ( mixed $value ) : AbstractDatatype
$value mixed Value
return AbstractDatatype
Exemplo n.º 1
0
 /**
  * Test
  *
  * @return void
  */
 public function testSetConfig()
 {
     $this->object->setConfig(serialize('NewValue'));
     $this->assertEquals('NewValue', $this->object->getConfig());
 }