Completed
Push — master ( b42419...6b3685 )
by Tom
06:30
created

src/Contracts/FeedFactory.php (1 issue)

Severity
1
<?php
2
3
namespace Astrotomic\Stancy\Contracts;
4
5
interface FeedFactory
6
{
7
    public function makeFromSheetCollectionName(string $name): array;
0 ignored issues
show
Method \Astrotomic\Stancy\Contracts\FeedFactory::makeFromSheetCollectionName() does not have @return annotation for its traversable return value.
Loading history...
8
}
9