/home/smartonegroup/public_html/veroserv/vendor/smarty/smarty/src/Compiler/BaseCompiler.php
<?php

namespace Smarty\Compiler;

use Smarty\Smarty;

abstract class BaseCompiler {

	/**
	 * Smarty object
	 *
	 * @var Smarty
	 */
	protected $smarty = null;

	/**
	 * @return Smarty|null
	 */
	public function getSmarty(): Smarty {
		return $this->smarty;
	}

}