File tree Expand file tree Collapse file tree 9 files changed +0
-57
lines changed Expand file tree Collapse file tree 9 files changed +0
-57
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,6 @@ public function getLineNo() {
28
28
return $ this ->iLineNo ;
29
29
}
30
30
31
- /**
32
- * @param int $iLineNo
33
- */
34
- public function setLineNo ($ iLineNo = 0 ) {
35
- $ this ->iLineNo = $ iLineNo ;
36
- }
37
-
38
31
public function append ($ oItem ) {
39
32
$ this ->aContents [] = $ oItem ;
40
33
}
Original file line number Diff line number Diff line change @@ -23,13 +23,6 @@ public function getLineNo() {
23
23
return $ this ->iLineNo ;
24
24
}
25
25
26
- /**
27
- * @param int $iLineNo
28
- */
29
- public function setLineNo ($ iLineNo = 0 ) {
30
- $ this ->iLineNo = $ iLineNo ;
31
- }
32
-
33
26
public function __toString () {
34
27
return $ this ->render (new \Sabberworm \CSS \OutputFormat ());
35
28
}
Original file line number Diff line number Diff line change @@ -26,13 +26,6 @@ public function getLineNo() {
26
26
return $ this ->iLineNo ;
27
27
}
28
28
29
- /**
30
- * @param int $iLineNo
31
- */
32
- public function setLineNo ($ iLineNo = 0 ) {
33
- $ this ->iLineNo = $ iLineNo ;
34
- }
35
-
36
29
public function setCharset ($ sCharset ) {
37
30
$ this ->sCharset = $ sCharset ;
38
31
}
Original file line number Diff line number Diff line change @@ -25,13 +25,6 @@ public function getLineNo() {
25
25
return $ this ->iLineNo ;
26
26
}
27
27
28
- /**
29
- * @param int $iLineNo
30
- */
31
- public function setLineNo ($ iLineNo = 0 ) {
32
- $ this ->iLineNo = $ iLineNo ;
33
- }
34
-
35
28
public function setLocation ($ oLocation ) {
36
29
$ this ->oLocation = $ oLocation ;
37
30
}
Original file line number Diff line number Diff line change @@ -6,5 +6,4 @@ interface Renderable {
6
6
public function __toString ();
7
7
public function render (\Sabberworm \CSS \OutputFormat $ oOutputFormat );
8
8
public function getLineNo ();
9
- public function setLineNo ();
10
9
}
Original file line number Diff line number Diff line change @@ -31,13 +31,6 @@ public function getLineNo() {
31
31
return $ this ->iLineNo ;
32
32
}
33
33
34
- /**
35
- * @param int $iLineNo
36
- */
37
- public function setLineNo ($ iLineNo = 0 ) {
38
- $ this ->iLineNo = $ iLineNo ;
39
- }
40
-
41
34
public function setRule ($ sRule ) {
42
35
$ this ->sRule = $ sRule ;
43
36
}
Original file line number Diff line number Diff line change @@ -26,13 +26,6 @@ public function getLineNo() {
26
26
return $ this ->iLineNo ;
27
27
}
28
28
29
- /**
30
- * @param int $iLineNo
31
- */
32
- public function setLineNo ($ iLineNo = 0 ) {
33
- $ this ->iLineNo = $ iLineNo ;
34
- }
35
-
36
29
public function addRule (Rule $ oRule ) {
37
30
$ sRule = $ oRule ->getRule ();
38
31
if (!isset ($ this ->aRules [$ sRule ])) {
Original file line number Diff line number Diff line change @@ -17,13 +17,6 @@ public function setColor($aColor) {
17
17
$ this ->aComponents = $ aColor ;
18
18
}
19
19
20
- public function setLineNo ($ iLineNo = 0 ) {
21
- foreach ($ this ->aComponents as $ color_component ) {
22
- $ color_component ->setLineNo ($ iLineNo );
23
- }
24
- parent ::setLineNo ($ iLineNo );
25
- }
26
-
27
20
public function getColorDescription () {
28
21
return $ this ->getName ();
29
22
}
Original file line number Diff line number Diff line change @@ -18,13 +18,6 @@ public function getLineNo() {
18
18
return $ this ->iLineNo ;
19
19
}
20
20
21
- /**
22
- * @param int $iLineNo
23
- */
24
- public function setLineNo ($ iLineNo = 0 ) {
25
- $ this ->iLineNo = $ iLineNo ;
26
- }
27
-
28
21
//Methods are commented out because re-declaring them here is a fatal error in PHP < 5.3.9
29
22
//public abstract function __toString();
30
23
//public abstract function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
You can’t perform that action at this time.
0 commit comments