crypto-pro-php-stubs/src/CPAttributes.php

65 lines
990 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Коллекция объектов CPAttribute.
*
* @property-read int $Count
* @property-read int $Item
*/
class CPAttributes
{
/**
* Добавляет атрибут в коллекцию.
*
* @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()
{
}
}