Writer::write()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
nc 1
1
<?php
2
namespace GoetasWebservices\Xsd\XsdToPhp\Writer;
3
4
abstract class Writer
5
{
6
    public abstract function write(array $items);
0 ignored issues
show
Coding Style introduced by
The abstract declaration must precede the visibility declaration
Loading history...
7
}