Merge pull request #199 from yansongda/analysis-zG6EE2

Apply fixes from StyleCI
This commit is contained in:
yansongda 2018-12-12 16:22:14 +08:00 committed by GitHub
commit 7d57b70a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,13 +29,13 @@ class KernelLogSubscriber implements EventSubscriberInterface
public static function getSubscribedEvents()
{
return [
Events::PAY_STARTING => ['writePayStartingLog', 256],
Events::PAY_STARTED => ['writePayStartedLog', 256],
Events::API_REQUESTING => ['writeApiRequestingLog', 256],
Events::API_REQUESTED => ['writeApiRequestedLog', 256],
Events::SIGN_FAILED => ['writeSignFailedLog', 256],
Events::PAY_STARTING => ['writePayStartingLog', 256],
Events::PAY_STARTED => ['writePayStartedLog', 256],
Events::API_REQUESTING => ['writeApiRequestingLog', 256],
Events::API_REQUESTED => ['writeApiRequestedLog', 256],
Events::SIGN_FAILED => ['writeSignFailedLog', 256],
Events::REQUEST_RECEIVED => ['writeRequestReceivedLog', 256],
Events::METHOD_CALLED => ['writeMethodCalledLog', 256]
Events::METHOD_CALLED => ['writeMethodCalledLog', 256],
];
}