예제 #1
0
 public function testIsGettingTransformedValue()
 {
     $typeHandler = $this->prophesize(TypeHandler::class);
     $typeHandler->getType('string')->willReturn(new BaseNode());
     $base = new BaseNode();
     $base->setTypeHandler($typeHandler->reveal());
     $child = $base->add('foobar', 'string', ['transformer' => new DateTimeTransformer()]);
     $this->assertEquals(new \DateTime('2014-01-01 00:00:00'), $child->getValue('foobar', '2014-01-01 00:00:00'));
 }
예제 #2
0
 public function add(string $key, string $type, array $options = []) : BaseNode
 {
     return $this->root->add($key, $type, $options);
 }