Compare commits

..

No commits in common. "d8547321433558fe915e3b3c90d048de6c6be08c" and "95ca655eb0bfb39f943f6cbccc361af7bd42d1ff" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ abstract class AbstractConverter implements ConverterContract
*/ */
protected function interpolate(string $content): string protected function interpolate(string $content): string
{ {
if (empty($this->vars) && !empty($this->env) && $this->env->hasVars()) { if (empty($this->vars) && $this->env->hasVars()) {
return $content; return $content;
} }
$matches = []; $matches = [];

View File

@ -22,7 +22,7 @@ class Processor
/** /**
* Converter version * Converter version
*/ */
public const VERSION = '1.2.3'; public const VERSION = '1.2.2';
/** /**
* @var string[] Paths to collection files * @var string[] Paths to collection files