Completed
Push — master ( b9cad8...110134 )
by Tom
06:48 queued 03:46
created

src/Facades/SitemapFactory.php (1 issue)

Severity
1
<?php
2
3
namespace Astrotomic\Stancy\Facades;
4
5
use Astrotomic\Stancy\Contracts\SitemapFactory as SitemapFactoryContract;
6
use Illuminate\Support\Facades\Facade;
7
use Spatie\Sheets\Repository as SheetRepository;
0 ignored issues
show
Type Spatie\Sheets\Repository (as SheetRepository) is not used in this file.
Loading history...
8
use Spatie\Sitemap\Sitemap;
9
10
/**
11
 * @method static Sitemap makeFromPages(array $pages)
12
 * @method static Sitemap makeFromSheetList(array $list)
13
 * @method static Sitemap makeFromSheetCollectionName(string $name)
14
 *
15
 * @see SitemapFactoryContract
16
 */
17
class SitemapFactory extends Facade
18
{
19 1
    protected static function getFacadeAccessor()
20
    {
21 1
        return SitemapFactoryContract::class;
22
    }
23
}
24