Skip to content

Commit 696e85a

Browse files
committed
Remove abstract methods defined in interfaces
Causes a fatal error in PHP < 5.3.9 Closes MyIntervals#83 as fixed
1 parent 1be621e commit 696e85a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/Sabberworm/CSS/Value/Value.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Sabberworm\CSS\Renderable;
66

77
abstract class Value implements Renderable {
8-
public abstract function __toString();
9-
public abstract function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
8+
//Methods are commented out because re-declaring them here is a fatal error in PHP < 5.3.9
9+
//public abstract function __toString();
10+
//public abstract function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
1011
}

0 commit comments

Comments
 (0)