igaster\laravelTheme\Theme::__construct PHP Method

__construct() public method

public __construct ( $themeName, $assetPath = null, $viewsPath = null )
    public function __construct($themeName, $assetPath = null, $viewsPath = null)
    {
        $this->name = $themeName;
        $this->assetPath = $assetPath === null ? $themeName : $assetPath;
        $this->viewsPath = $viewsPath === null ? $themeName : $viewsPath;
    }