Merge pull request #12527 from nupplaphil/feat/request_id

Introduce Request::getRequestId()
This commit is contained in:
Hypolite Petovan 2022-12-26 16:07:35 -05:00 committed by GitHub
commit 5c332af844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 420 additions and 202 deletions

View file

@ -176,6 +176,12 @@ return [
['createDev', [], Dice::CHAIN_CALL],
]
],
\Friendica\Core\Logger\Capabilities\IHaveCallIntrospections::class => [
'instanceOf' => \Friendica\Core\Logger\Util\Introspection::class,
'constructParams' => [
\Friendica\Core\Logger\Util\Introspection::IGNORE_CLASS_LIST,
],
],
Cache\Capability\ICanCache::class => [
'instanceOf' => Cache\Factory\Cache::class,
'call' => [
@ -267,5 +273,10 @@ return [
],
\Psr\Clock\ClockInterface::class => [
'instanceOf' => Util\Clock\SystemClock::class
]
],
\Friendica\Module\Special\HTTPException::class => [
'constructParams' => [
$_SERVER
],
],
];