Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace App\Service\ApplicationInfo\Output;
4
5interface InterfaceOutput
6{
7    public function output(string $str): void;
8
9    public function top(): void;
10
11    public function bottom(): void;
12
13    public function title(string $str): void;
14
15    public function line(string $str): void;
16
17    public function erreur(string $str): void;
18
19    public function ok(string $str): string;
20
21    public function ko(string $str): string;
22
23    public function filter(string $str): string;
24}