Astrotomic /
stancy
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Astrotomic\Stancy\Contracts; |
||
| 4 | |||
| 5 | use Spatie\Sitemap\Sitemap; |
||
| 6 | |||
| 7 | interface SitemapFactory |
||
| 8 | { |
||
| 9 | public function makeFromSheetList(array $list): Sitemap; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 10 | |||
| 11 | public function makeFromSheetCollectionName(string $name): Sitemap; |
||
| 12 | } |
||
| 13 |