PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
spotlight-social-photo-feeds
/
src
/
core
/
Engine
/
Fetcher
<?php declare(strict_types=1); namespace RebelCode\Spotlight\Instagram\Engine\Fetcher; use RebelCode\Iris\Data\Source; use RebelCode\Iris\Fetcher\Catalog; use RebelCode\Iris\Fetcher\FetchResult; class NullCatalog implements Catalog { public function query(Source $source, ?string $cursor = null, ?int $count = null): FetchResult { return new FetchResult([], $source); } }
[+]
..
[-] AccountPostsCatalog.php
[edit]
[-] NullCatalog.php
[edit]
[-] IgPostsCatalog.php
[edit]
[-] CompositeCatalog.php
[edit]
[-] IgFetchStrategy.php
[edit]