Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Renderable.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

interface Renderable
{
/**
* @return string
*/
public function __toString();

/**
Expand Down
4 changes: 0 additions & 4 deletions src/Value/Value.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,4 @@ public function getLineNo()
{
return $this->iLineNo;
}

//Methods are commented out because re-declaring them here is a fatal error in PHP < 5.3.9
//public abstract function __toString();
//public abstract function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
}