1 | <?php |
||
8 | class DefaultCorrelationIdProvider implements CorrelationIdProvider |
||
9 | { |
||
10 | private $projectKey; |
||
11 | |||
12 | 73 | public function __construct($projectKey = null) |
|
17 | |||
18 | 530 | public function getCorrelationId() |
|
22 | |||
23 | /** |
||
24 | * Returns an instance if ramsay\uuid package is installed |
||
25 | * @param string $projectKey |
||
26 | * @return DefaultCorrelationIdProvider|null |
||
27 | */ |
||
28 | 73 | public static function of($projectKey) |
|
35 | } |
||
36 |