Completed
Push — master ( 30513c...8a364c )
by Tom
03:25 queued 41s
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;
8
use Spatie\Sitemap\Sitemap;
9
10
/**
11
 * @method static Sitemap makeFromSheetCollection(SheetRepository $collection)
12
 * @method static Sitemap makeFromSheetCollectionName(string $name)
13
 *
14
 * @see SitemapFactoryContract
15
 */
16
class SitemapFactory extends Facade
17
{
18 1
    protected static function getFacadeAccessor()
0 ignored issues
show
Method \Astrotomic\Stancy\Facades\SitemapFactory::getFacadeAccessor() does not have return type hint nor @return annotation for its return value.
Loading history...
19
    {
20 1
        return SitemapFactoryContract::class;
21
    }
22
}
23