mirror of
https://github.com/crypto-pro-web/crypto-pro-php-stubs.git
synced 2025-12-05 14:58:20 +03:00
27 lines
299 B
PHP
27 lines
299 B
PHP
<?php
|
|
|
|
class CPEKUs
|
|
{
|
|
|
|
public function __construct(){}
|
|
|
|
public function Add(){}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function get_Count(){}
|
|
|
|
/**
|
|
* @param int $index
|
|
*
|
|
* @return \CPEKU
|
|
*/
|
|
public function get_Item(int $index){}
|
|
|
|
public function Clear(){}
|
|
|
|
public function Remove(){}
|
|
|
|
}
|