namespace fix
This commit is contained in:
committed by
Steffen Schröder
parent
7b30e7ffc5
commit
da3d41a6f5
24
application/core/Files/SocketStructure.php
Normal file
24
application/core/Files/SocketStructure.php
Normal 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 = '';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user