26 lines
397 B
26 lines
397 B
![]()
2 months ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Interface XmlConfig
|
||
|
* @package OSS\Model
|
||
|
*/
|
||
|
interface XmlConfig
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Interface method: Parse the object from the xml.
|
||
|
*
|
||
|
* @param string $strXml
|
||
|
* @return null
|
||
|
*/
|
||
|
public function parseFromXml($strXml);
|
||
|
|
||
|
/**
|
||
|
* Interface method: Serialize the object into xml.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function serializeToXml();
|
||
|
|
||
|
}
|