mirror of
https://github.com/crypto-pro-web/crypto-pro-php-stubs.git
synced 2025-02-22 18:05:50 +03:00
Описание класса коллекции объектов CPAttribute.
This commit is contained in:
parent
8d82b89d25
commit
e3b57cd332
@ -1,20 +1,64 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Коллекция объектов CPAttribute.
|
||||
*
|
||||
* @property-read int $Count
|
||||
* @property-read int $Item
|
||||
*/
|
||||
class CPAttributes
|
||||
{
|
||||
|
||||
public function __construct(){}
|
||||
|
||||
public function Add(){}
|
||||
|
||||
public function get_Count(){}
|
||||
|
||||
public function get_Item(){}
|
||||
|
||||
public function Clear(){}
|
||||
|
||||
public function Remove(){}
|
||||
|
||||
public function Assign(){}
|
||||
|
||||
/**
|
||||
* Добавляет атрибут в коллекцию.
|
||||
*
|
||||
* @param CPAttribute $attribute
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function Add(CPAttribute $attribute)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Возвращает количество атрибутов в коллекции.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function get_Count()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Возвращает атрибут из коллекции по его индексу.
|
||||
*
|
||||
* @return CPAttribute
|
||||
*/
|
||||
public function get_Item(int $index)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Удаляет все атрибуты из коллекции.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function Clear()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Удаляет атрибут из коллекции.
|
||||
*
|
||||
* @param int $index
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function Remove(int $index)
|
||||
{
|
||||
}
|
||||
|
||||
public function Assign()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user