-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* @author Pavel Djundik | ||
* | ||
* @link https://xpaw.me | ||
* @link https://github.com/xPaw/PHP-Source-Query | ||
* | ||
* @license GNU Lesser General Public License, version 2.1 | ||
* | ||
* @internal | ||
*/ | ||
|
||
namespace xPaw\SourceQuery; | ||
|
||
/** | ||
* Base RCON interface | ||
*/ | ||
abstract class BaseRcon | ||
{ | ||
abstract public function Close( ) : void; | ||
abstract public function Open( ) : void; | ||
abstract public function Write( int $Header, string $String = '' ) : bool; | ||
abstract public function Read( ) : Buffer; | ||
abstract public function Command( string $Command ) : string; | ||
abstract public function Authorize( string $Password ) : void; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters