for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/lav45/yii2-activity-logger
* @copyright Copyright (c) 2017 LAV45
* @author Alexey Loban <[email protected]>
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace lav45\activityLogger;
use lav45\activityLogger\storage\DeleteCommand;
use lav45\activityLogger\storage\MessageData;
class DummyManager implements ManagerInterface
{
public string $user = 'user';
public string $userNameAttribute = 'username';
public bool $debug = YII_DEBUG;
public function isEnabled(): bool
return false;
}
public function log(MessageData $message): bool
public function delete(DeleteCommand $command): bool