Conflicts: core/lib/Thelia/Core/Template/Loop/Category.php core/lib/Thelia/Core/Template/Loop/FeatureValue.php core/lib/Thelia/Core/Template/Loop/Folder.php core/lib/Thelia/Core/Template/Loop/Product.php core/lib/Thelia/Core/Template/Smarty/Plugins/TheliaLoop.php install/faker.php
17 lines
236 B
Plaintext
Executable File
17 lines
236 B
Plaintext
Executable File
<?php
|
|
|
|
namespace Thelia\Log;
|
|
|
|
Interface TlogInterface
|
|
{
|
|
|
|
public function trace();
|
|
public function debug();
|
|
public function info();
|
|
public function warning();
|
|
public function error();
|
|
public function fatal();
|
|
|
|
}
|
|
|