interface DceSecurityProviderInterface
A DCE provider provides access to local domain identifiers for version 2, DCE Security, UUIDs
Hierarchy
- interface \Ramsey\Uuid\Provider\DceSecurityProviderInterface
Expanded class hierarchy of DceSecurityProviderInterface
All classes that implement DceSecurityProviderInterface
See also
3 files declare their use of DceSecurityProviderInterface
- DceSecurityGenerator.php in vendor/
ramsey/ uuid/ src/ Generator/ DceSecurityGenerator.php - FeatureSet.php in vendor/
ramsey/ uuid/ src/ FeatureSet.php - SystemDceSecurityProvider.php in vendor/
ramsey/ uuid/ src/ Provider/ Dce/ SystemDceSecurityProvider.php
File
-
vendor/
ramsey/ uuid/ src/ Provider/ DceSecurityProviderInterface.php, line 26
Namespace
Ramsey\Uuid\ProviderView source
interface DceSecurityProviderInterface {
/**
* Returns a user identifier for the system
*
* @link https://en.wikipedia.org/wiki/User_identifier User identifier
*/
public function getUid() : IntegerObject;
/**
* Returns a group identifier for the system
*
* @link https://en.wikipedia.org/wiki/Group_identifier Group identifier
*/
public function getGid() : IntegerObject;
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
DceSecurityProviderInterface::getGid | public | function | Returns a group identifier for the system | 1 |
DceSecurityProviderInterface::getUid | public | function | Returns a user identifier for the system | 1 |