D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Logging
/
Filename :
CommunicatorLogger.php
back
Copy
<?php namespace App\Libs\Sdk\Logging; use Exception; /** * Class CommunicatorLogger * * @package OnlinePayments\Sdk\Logging */ interface CommunicatorLogger { /** * @param string $message */ public function log(string $message): void; /** * @param string $message * @param Exception $exception */ public function logException(string $message, Exception $exception): void; }