Skip to content

Commit

Permalink
Replaced curly braces for PHP 7.4 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
modufolio committed Apr 23, 2021
1 parent 1fdc40e commit 0d00e8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lessc.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ protected function zipSetArgs($args, $orderedValues, $keywordValues) {

// check for a rest
$last = end($args);
if ($last[0] == "rest") {
if (is_array($last) && isset($last[0]) && $last[0] == "rest") {
$rest = array_slice($orderedValues, count($args) - 1);
$this->set($last[1], $this->reduce(array("list", " ", $rest)));
}
Expand Down Expand Up @@ -746,7 +746,7 @@ protected function compileProp($prop, $block, $out) {
if ($suffix !== null &&
$subProp[0] == "assign" &&
is_string($subProp[1]) &&
$subProp[1]{0} != $this->vPrefix
$subProp[1][0] != $this->vPrefix
) {
$subProp[2] = array(
'list', ' ',
Expand Down Expand Up @@ -1963,7 +1963,7 @@ protected function injectVariables($args) {
$this->pushEnv();
$parser = new lessc_parser($this, __METHOD__);
foreach ($args as $name => $strValue) {
if ($name{0} !== '@') {
if ($name[0] !== '@') {
$name = '@' . $name;
}
$parser->count = 0;
Expand Down Expand Up @@ -2624,7 +2624,7 @@ protected function parseChunk() {
$hidden = true;
if (!isset($block->args)) {
foreach ($block->tags as $tag) {
if (!is_string($tag) || $tag{0} != $this->lessc->mPrefix) {
if (!is_string($tag) || $tag[0] != $this->lessc->mPrefix) {
$hidden = false;
break;
}
Expand Down Expand Up @@ -2678,7 +2678,7 @@ protected function isDirective($dirname, $directives) {
protected function fixTags($tags) {
// move @ tags out of variable namespace
foreach ($tags as &$tag) {
if ($tag{0} == $this->lessc->vPrefix)
if ($tag[0] == $this->lessc->vPrefix)
$tag[0] = $this->lessc->mPrefix;
}
return $tags;
Expand Down

0 comments on commit 0d00e8f

Please sign in to comment.