30 lines
520 B
PHP
30 lines
520 B
PHP
<?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 = '';*/
|
|
}
|
|
}
|