finish #66
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user