Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • unicaen_authentification
  • bg-php8
  • 5.x
  • 4.x
  • release_4.0.0
  • bootstrap4_migration
  • laminas_migration
  • 7.1.0
  • 7.0.0
  • 6.0.3
  • 6.0.2
  • 6.0.1
  • 6.0.0
  • 5.0.1
  • 5.0.0
  • 4.0.1
  • 4.0.0
  • 1.0.0
19 results

module.config.php

Blame
  • 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);
    }