Commit 4c52641e authored by Nicolas Widart's avatar Nicolas Widart

Merge commit '3f527cd4'

* commit '3f527cd4':
  Squashed 'Modules/Core/' changes from 09b7768..e713728
parents ee2f7166 3f527cd4
<?php namespace Modules\Core\Http\Controllers;
use Modules\Core\Contracts\Setting;
abstract class BasePublicController
{
/**
* @var string The active theme name
*/
public $theme;
/**
* @var Setting
*/
private $setting;
public function __construct(Setting $setting)
{
$this->setting = $setting;
$this->theme = $this->setting->get('core::template');
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment