Issues (54)

src/Contracts/ExportFactory.php (2 issues)

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