Remove unused methods

This commit is contained in:
Aidan Woods 2019-02-11 00:11:41 +00:00
parent 658129d847
commit c0792947a6
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9
2 changed files with 0 additions and 17 deletions

View File

@ -83,17 +83,6 @@ final class Element implements Renderable
$this->Contents = $Contents; $this->Contents = $Contents;
} }
/**
* @param string $name
* @param array<string, string> $attributes
* @param Renderable[] $Contents
* @return self
*/
public static function create($name, array $attributes, array $Contents)
{
return new self($name, $attributes, $Contents);
}
/** /**
* @param string $name * @param string $name
* @param array<string, string> $attributes * @param array<string, string> $attributes

View File

@ -88,12 +88,6 @@ final class Lines
return $this->Contexts; return $this->Contexts;
} }
/** @return Context */
public function last()
{
return $this->Contexts[\count($this->Contexts) -1];
}
/** @return bool */ /** @return bool */
public function containsBlankLines() public function containsBlankLines()
{ {