You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,35 +50,35 @@ We provide simple [Monolog](https://github.com/Seldaek/monolog) [processor](src/
50
50
51
51
To generate request id you need to use implementation of `PhpMiddleware\RequestId\Generator\GeneratorInterface`. There are predefined generators in `PhpMiddleware\RequestId\Generator\` namespace:
52
52
53
-
#### `PhpUniqidGenerator`
53
+
#### PhpUniqidGenerator
54
54
55
55
Simple generator using [uniqid](http://php.net/manual/en/function.uniqid.php) function.
56
56
57
-
#### `RamseyUuid1Generator`
57
+
#### RamseyUuid1Generator
58
58
59
59
[UUID](https://tools.ietf.org/html/rfc4122)1 implementations of [Ramsey\Uuid](https://github.com/ramsey/uuid). To use it you need to add `ramsey/uuid` dependency to your `composer.json`.
60
60
61
-
#### `RamseyUuid3Generator`
61
+
#### RamseyUuid3Generator
62
62
63
63
[UUID](https://tools.ietf.org/html/rfc4122)3 implementations of [Ramsey\Uuid](https://github.com/ramsey/uuid). To use it you need to add `ramsey/uuid` dependency to your `composer.json`.
64
64
65
-
#### `RamseyUuid4Generator`
65
+
#### RamseyUuid4Generator
66
66
67
67
[UUID](https://tools.ietf.org/html/rfc4122)4 implementations of [Ramsey\Uuid](https://github.com/ramsey/uuid). To use it you need to add `ramsey/uuid` dependency to your `composer.json`.
68
68
69
-
#### `RamseyUuid4StaticGenerator`
69
+
#### RamseyUuid4StaticGenerator
70
70
71
71
Generates Uuid4 like `RamseyUuid4Generator` however it's not require any dependency (it use static factory method).
72
72
73
-
#### `RamseyUuid5Generator`
73
+
#### RamseyUuid5Generator
74
74
75
75
[UUID](https://tools.ietf.org/html/rfc4122)5 implementations of [Ramsey\Uuid](https://github.com/ramsey/uuid). To use it you need to add `ramsey/uuid` dependency to your `composer.json`.
76
76
77
-
#### `PrefixedGenerator`
77
+
#### PrefixedGenerator
78
78
79
-
Adds prefix to generated request id.
79
+
It adds prefix to generated request id.
80
80
81
-
#### `Md5Generator`
81
+
#### Md5Generator
82
82
83
83
This generator converts generated request id to md5 hash.
0 commit comments