diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-06-08 13:00:27 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-06-08 13:00:27 +0100 |
| commit | 238d6f46440eb68ffb982a7af1ec9dd37c8e75d7 (patch) | |
| tree | 43be810090335b5d2f6a1a6de9321975bd705a33 /app/Module/ThemeSelectModule.php | |
| parent | 7bd2dc1975abbb849d469d48352bbcc45c637c7e (diff) | |
| download | webtrees-238d6f46440eb68ffb982a7af1ec9dd37c8e75d7.tar.gz webtrees-238d6f46440eb68ffb982a7af1ec9dd37c8e75d7.tar.bz2 webtrees-238d6f46440eb68ffb982a7af1ec9dd37c8e75d7.zip | |
Split BaseTheme into AbstractTheme and ThemeInterface
Diffstat (limited to 'app/Module/ThemeSelectModule.php')
| -rw-r--r-- | app/Module/ThemeSelectModule.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Module/ThemeSelectModule.php b/app/Module/ThemeSelectModule.php index 55854f14a9..3851a971a4 100644 --- a/app/Module/ThemeSelectModule.php +++ b/app/Module/ThemeSelectModule.php @@ -17,7 +17,7 @@ namespace Fisharebest\Webtrees\Module; */ use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Theme; -use Fisharebest\Webtrees\Theme\BaseTheme; +use Fisharebest\Webtrees\Theme\AbstractTheme; /** * Class ThemeSelectModule @@ -35,7 +35,6 @@ class ThemeSelectModule extends AbstractModule implements ModuleBlockInterface { /** {@inheritdoc} */ public function getBlock($block_id, $template = true, $cfg = null) { - /** @var BaseTheme */ $id = $this->getName() . $block_id; $class = $this->getName() . '_block'; $title = $this->getTitle(); |
