| 1 | <?php |
||
| 23 | abstract class AbstractSitemapService implements SitemapServiceInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var RouterInterface |
||
| 27 | */ |
||
| 28 | private $router; |
||
| 29 | |||
| 30 | public function __construct(RouterInterface $router) |
||
| 34 | |||
| 35 | public function configureSettings(OptionsResolver $resolver): void |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param string $name |
||
| 41 | * @param int $absolute |
||
| 42 | */ |
||
| 43 | final protected function generate($name, array $parameters = [], $absolute = UrlGeneratorInterface::ABSOLUTE_URL): string |
||
| 47 | |||
| 48 | final protected function createEntry(string $location, ?int $priority, ?string $changeFreq = null, ?\DateTime $lastMod = null): UrlInterface |
||
| 52 | } |
||
| 53 |