This commit is contained in:
stubbfel
2013-07-01 18:54:59 +02:00
parent aa03fdcd1b
commit 7851ee7e3b
15 changed files with 177 additions and 97 deletions

View File

@@ -1,15 +1,34 @@
<?php
namespace utiliy;
/**
*
* This is an Interface for the serialpation from sql-result to formatted string
* @author stubbfel
* @since 01.07.2013
*/
interface SerialManager {
public function arrayToSps($result);
public function arrayToPis($result);
public function arrayToPss($result);
/**
* Convert an array from the SPS to a formatted string
* @param array [num] [assoc] $result
* @return string
*/
public function arrayToSps($result);
/**
* Convert an array from the PIS to a formatted string
* @param array [num] [assoc] $result
* @return string
*/
public function arrayToPis($result);
/**
* Convert an array from the PSS to a formatted string
* @param array [num] [assoc] $result
* @return string
*/
public function arrayToPss($result);
}
?>