mirror of
https://github.com/crypto-pro-web/crypto-pro-php.git
synced 2025-01-18 11:25:50 +03:00
Поправил нотисы
This commit is contained in:
parent
c47e29fc9f
commit
3b292bb8dc
@ -12,17 +12,17 @@ abstract class AbstractDictionary implements DictionaryInterface
|
||||
|
||||
$options = [];
|
||||
|
||||
if (!!$implements[TitleAwareInterface::class])
|
||||
if (in_array(TitleAwareInterface::class, $implements))
|
||||
{
|
||||
$options['title'] = $data['title'] ?? null;
|
||||
}
|
||||
|
||||
if (!!$implements[OIDAwareInterface::class])
|
||||
if (in_array(OIDAwareInterface::class, $implements))
|
||||
{
|
||||
$options['OID'] = $data['OID'] ?? null;
|
||||
}
|
||||
|
||||
if (!!$implements[RDNAwareInterface::class])
|
||||
if (in_array(RDNAwareInterface::class, $implements))
|
||||
{
|
||||
$options['RDN'] = $data['RDN'] ?? null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user