Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<?php
/**
* For the full copyright and license information, please view the
* docs/licenses/LICENSE.txt file that was distributed with this source code.
*/
declare(strict_types=1);
interface PrestaShopLoggerInterface
{
public const DEBUG = 0;
public const INFO = 1;
public const WARNING = 2;
public const ERROR = 3;
/**
* @param string $message
* @param int $level
*
* @return void
*/
public function log($message, $level = self::DEBUG);
/**
* @param string $message
*
* @return void
*/
public function logDebug($message);
/**
* @param string $message
*
* @return void
*/
public function logInfo($message);
/**
* @param string $message
*
* @return void
*/
public function logWarning($message);
/**
* @param string $message
*
* @return void
*/
public function logError($message);
}