1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Remove unused $placeholder variable

This commit is contained in:
Daniel Rudolf 2016-10-13 19:31:35 +02:00
parent bdf537e9d5
commit 30ff5c6e75
No known key found for this signature in database
GPG Key ID: A061F02CD8DE4538

View File

@ -584,13 +584,11 @@ class Parsedown
return $Block;
}
elseif ($Block['indent'] === $Line['indent'] and $placeholder = $this->blockList($Line))
elseif ($Block['indent'] === $Line['indent'] and $this->blockList($Line))
{
return null;
}
unset($placeholder);
if ($Line['text'][0] === '[' and $this->blockReference($Line))
{
return $Block;