Passed
Push — master ( ddfabf...6c2ee4 )
by Tom
03:14 queued 10s
created

src/Contracts/ExportFactory.php (2 issues)

Severity
1
<?php
2
3
namespace Astrotomic\Stancy\Contracts;
4
5
interface ExportFactory
6
{
7
    public function addSheetList(array $list): void;
0 ignored issues
show
Method \Astrotomic\Stancy\Contracts\ExportFactory::addSheetList() does not have @param annotation for its traversable parameter $list.
Loading history...
8
9
    public function addSheetCollectionName(string $name): void;
10
11
    public function addFeeds(array $except = []): void;
0 ignored issues
show
Method \Astrotomic\Stancy\Contracts\ExportFactory::addFeeds() does not have @param annotation for its traversable parameter $except.
Loading history...
12
}
13