mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
15 lines
192 B
PHP
15 lines
192 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Comunic Server object helper
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Get root Comunic object
|
||
|
*
|
||
|
* @return CS Comunic Server object
|
||
|
*/
|
||
|
function cs() : CS {
|
||
|
return CS::get();
|
||
|
}
|