Описание для исполоьзованных методов

This commit is contained in:
Artem Vasilev 2022-11-08 20:44:28 +03:00
parent b0b39dee7f
commit 215d06d42f
2 changed files with 20 additions and 8 deletions

View File

@ -96,7 +96,7 @@ class CPSignedData
*
* @return string|void
*/
public function SignCades(\CPSigner $Signer, $CadesType = CADES_DEFAULT, bool $bDetached = false, $EncodingType = ENCODE_BASE64)
public function SignCades(\CPSigner $Signer, $CadesType, bool $bDetached, $EncodingType)
{
}
@ -180,7 +180,7 @@ class CPSignedData
*
* @return string|void
*/
public function SignHash(\CPHashedData $Hash, \CPSigner $Signer, $CadesType = CADES_DEFAULT, $EncodingType = ENCODE_BASE64)
public function SignHash(\CPHashedData $Hash, \CPSigner $Signer, $CadesType, $EncodingType)
{
}
@ -488,7 +488,7 @@ class CPSignedData
*
* @return void
*/
public function VerifyCades(string $SignedMessage, $CadesType = CADES_DEFAULT, bool $bDetached = false)
public function VerifyCades(string $SignedMessage, $CadesType, bool $bDetached)
{
}

View File

@ -2,9 +2,21 @@
class CPSigners
{
public function get_Count(){}
public function get_Item(){}
/**
* @return int
*/
public function get_Count()
{
}
/**
* @param int $index
*
* @return CPSigner
*/
public function get_Item($index)
{
}
}