TrackManiaControl/application/core/Files/SocketStructure.php

24 lines
379 B
PHP
Raw Normal View History

2014-02-07 00:19:53 +01:00
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 07.02.14
* Time: 00:18
*/
2014-02-07 00:26:32 +01:00
namespace ManiaControl\Files;
2014-02-07 00:19:53 +01:00
/**
* Socket Structure
*/
class SocketStructure {
public $streamBuffer;
public $socket;
public $function;
public function construct($socket, $function) {
$this->socket = $socket;
$this->function = $function;
$this->streamBuffer = '';
}
}