Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Change variable visibility, closes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy-muehle committed Jun 1, 2016
1 parent a0e8d43 commit c7895e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Service/SitemapGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ class SitemapGenerator
/**
* @var \XMLWriter
*/
private $map;
protected $map;

/**
* @var string
*/
private $scheme = 'http://www.sitemaps.org/schemas/sitemap/0.9';
protected $scheme = 'http://www.sitemaps.org/schemas/sitemap/0.9';

/**
* Constructor
Expand Down Expand Up @@ -83,4 +83,4 @@ protected function endSitemap()
$this->map->endElement();
$this->map->endDocument();
}
}
}

0 comments on commit c7895e3

Please sign in to comment.