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 PhpOffice\PhpProject\Writer;
6
7interface WriterInterface
8{
9    /**
10     * Save PHPProject to file
11     *
12     * @param  string $pFilename
13     * @return void
14     */
15    public function save(string $pFilename): void;
16}