We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 185a0fb + ea23817 commit 0a3a353Copy full SHA for 0a3a353
src/ChangeFrequency.php
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+namespace Tackk\Cartographer;
4
5
+class ChangeFrequency
6
+{
7
+ const ALWAYS = 'always';
8
+ const HOURLY = 'hourly';
9
+ const DAILY = 'daily';
10
+ const WEEKLY = 'weekly';
11
+ const MONTHLY = 'monthly';
12
+ const YEARLY = 'yearly';
13
+ const NEVER = 'never';
14
+}
src/Sitemap.php
@@ -2,17 +2,6 @@
namespace Tackk\Cartographer;
-class ChangeFrequency
-{
- const ALWAYS = 'always';
- const HOURLY = 'hourly';
- const DAILY = 'daily';
- const WEEKLY = 'weekly';
- const MONTHLY = 'monthly';
- const YEARLY = 'yearly';
- const NEVER = 'never';
-}
15
-
16
class Sitemap extends AbstractSitemap
17
{
18
protected function getRootNodeName()
0 commit comments