Skip to content
Snippets Groups Projects
Select Git revision
  • 5e7648ba955898ad42fdd839bbf3d21467b4037f
  • main default
  • detached3
  • detached2
  • modernisation-gestion-donnees
  • detached
  • 1.5.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 0.9.10
  • 0.9.9
  • 0.9.8
26 results

LoggerInterface.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);
    }