@frontastic/common 2.21.0 → 2.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/composer.json +1 -1
- package/docs/README.md +1 -0
- package/docs/php/CoreBundle/Domain/Tracing.md +17 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/composer.json
CHANGED
package/docs/README.md
CHANGED
|
@@ -129,6 +129,7 @@ Here you find the API documentation for the relevant classes:
|
|
|
129
129
|
* [SwiftMail](php/CoreBundle/Domain/Mailer/SwiftMail.md)
|
|
130
130
|
* [PaginationAdapter](php/CoreBundle/Domain/PaginationAdapter.md)
|
|
131
131
|
* [RequestProvider](php/CoreBundle/Domain/RequestProvider.md)
|
|
132
|
+
* [Tracing](php/CoreBundle/Domain/Tracing.md)
|
|
132
133
|
* [Versioner](php/CoreBundle/Domain/Versioner.md)
|
|
133
134
|
* EventListener
|
|
134
135
|
* [JsonExceptionListener](php/CoreBundle/EventListener/JsonExceptionListener.md)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Tracing
|
|
2
|
+
|
|
3
|
+
**Fully Qualified**: [`\Frontastic\Common\CoreBundle\Domain\Tracing`](../../../../src/php/CoreBundle/Domain/Tracing.php)
|
|
4
|
+
|
|
5
|
+
## Methods
|
|
6
|
+
|
|
7
|
+
* [getCurrentTraceId()](#getcurrenttraceid)
|
|
8
|
+
|
|
9
|
+
### getCurrentTraceId()
|
|
10
|
+
|
|
11
|
+
```php
|
|
12
|
+
static public function getCurrentTraceId(): mixed
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Return Value: `mixed`
|
|
16
|
+
|
|
17
|
+
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|