namespace fix

This commit is contained in:
kremsy
2014-02-07 00:26:32 +01:00
committed by Steffen Schröder
parent 7b30e7ffc5
commit da3d41a6f5
4 changed files with 18 additions and 16 deletions

View File

@ -0,0 +1,24 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 07.02.14
* Time: 00:18
*/
namespace ManiaControl\Files;
/**
* Socket Structure
*/
class SocketStructure {
public $streamBuffer;
public $socket;
public $function;
public function construct($socket, $function) {
$this->socket = $socket;
$this->function = $function;
$this->streamBuffer = '';
}
}