Skip to content

Commit 497a32a

Browse files
committed
Use tabs for indentation
1 parent bfca845 commit 497a32a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

lib/Sabberworm/CSS/Parsing/OutputException.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Thrown if the CSS parsers attempts to print something invalid
77
*/
88
class OutputException extends SourceException {
9-
public function __construct($sMessage, $iLineNo = 0) {
10-
parent::__construct($sMessage, $iLineNo);
11-
}
9+
public function __construct($sMessage, $iLineNo = 0) {
10+
parent::__construct($sMessage, $iLineNo);
11+
}
1212
}

lib/Sabberworm/CSS/Parsing/SourceException.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
namespace Sabberworm\CSS\Parsing;
44

55
class SourceException extends \Exception {
6-
private $iLineNo;
7-
public function __construct($sMessage, $iLineNo = 0) {
8-
$this->iLineNo = $iLineNo;
9-
if (!empty($iLineNo)) {
10-
$sMessage .= " [line no: $iLineNo]";
11-
}
12-
parent::__construct($sMessage);
13-
}
6+
private $iLineNo;
7+
public function __construct($sMessage, $iLineNo = 0) {
8+
$this->iLineNo = $iLineNo;
9+
if (!empty($iLineNo)) {
10+
$sMessage .= " [line no: $iLineNo]";
11+
}
12+
parent::__construct($sMessage);
13+
}
1414

15-
public function getLineNo() {
16-
return $this->iLineNo;
17-
}
15+
public function getLineNo() {
16+
return $this->iLineNo;
17+
}
1818
}

0 commit comments

Comments
 (0)