dedi begin

This commit is contained in:
kremsy
2014-02-14 19:22:11 +01:00
committed by Steffen Schröder
parent fb309423ef
commit 6717039e91
2 changed files with 115 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 14.02.14
* Time: 17:16
*/
namespace Dedimania;
/**
* Dedimania Structure
*
* @author kremsy & steeffeen
*/
class DedimaniaData {
/*public $streamBuffer;
public $socket;
public $function;
public $url;
public $creationTime;*/
public function __construct($url, $socket, $function) {
/*$this->url = $url;
$this->socket = $socket;
$this->function = $function;
$this->creationTime = time();
$this->streamBuffer = '';*/
}
}