Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace WsdlToPhp\PackageGenerator\Parser;
6
7interface ParserInterface
8{
9    /**
10     * This method is called to launch the data parsing
11     * If an exception must be thrown, then it must be thrown here.
12     */
13    public function parse(): void;
14}