mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 10:18:39 +00:00
27 lines
431 B
PHP
27 lines
431 B
PHP
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Socket\Server;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class ClientManagerTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testPlaceholder() : void
|
|
{
|
|
self::markTestIncomplete();
|
|
}
|
|
}
|