Select Git revision
AuthControllerFactory.php
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LoggerInterface.php 275 B
<?php
namespace Unicaen\BddAdmin\Logger;
interface LoggerInterface
{
public function error(Throwable|string $e);
public function begin(string $title);
public function end(?string $msg = null);
public function msg($message, bool $rewrite = false);
}