add seiralmanager #66

This commit is contained in:
stubbfel
2013-07-01 17:47:45 +02:00
parent 802b561187
commit aa03fdcd1b
10 changed files with 83 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace utiliy;
/**
*
* @author stubbfel
*/
interface SerialManager {
public function arrayToSps($result);
public function arrayToPis($result);
public function arrayToPss($result);
}
?>