convertToXmlValue() публичный Метод

public convertToXmlValue ( $value )
Пример #1
0
 public function testDateTimeConvertsToXmlValue()
 {
     $date = new \DateTime('1985-09-01 10:10:10');
     $expected = DateTimeType::FORMAT;
     $actual = is_string($this->_type->convertToXmlValue($date));
     $this->assertEquals($expected, $actual);
 }
Пример #2
0
 public function testDateTimeConvertsToXmlValue()
 {
     $date = new \DateTime('1985-09-01 10:10:10');
     $expected = '1985-09-01 10:10:10';
     $actual = $this->_type->convertToXmlValue($date);
     $this->assertEquals($expected, $actual);
 }