Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 2 |
| Com | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
| generate | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Component\Uuid\Com. | |
| */ | |
| namespace Drupal\Component\Uuid; | |
| /** | |
| * UUID implementation using the Windows internal GUID extension. | |
| * | |
| * @see http://php.net/com_create_guid | |
| */ | |
| class Com implements UuidInterface { | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| public function generate() { | |
| // Remove {} wrapper and make lower case to keep result consistent. | |
| return strtolower(trim(com_create_guid(), '{}')); | |
| } | |
| } |