Skip to content

Commit 83866af

Browse files
committed
Opening braces on the same line of method (more)
1 parent d7aa43e commit 83866af

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

lib/Sabberworm/CSS/CSSList/Document.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class Document extends CSSBlockList {
1010
* Document constructor.
1111
* @param int $iLineNo
1212
*/
13-
public function __construct($iLineNo = 0)
14-
{
13+
public function __construct($iLineNo = 0) {
1514
parent::__construct($iLineNo);
1615
}
1716

lib/Sabberworm/CSS/Property/Import.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ public function getLineNo() {
2828
/**
2929
* @param int $iLineNo
3030
*/
31-
public function setLineNo($iLineNo = 0)
32-
{
31+
public function setLineNo($iLineNo = 0) {
3332
$this->iLineNo = $iLineNo;
3433
}
3534

lib/Sabberworm/CSS/Value/Color.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ public function setColor($aColor) {
1717
$this->aComponents = $aColor;
1818
}
1919

20-
public function setLineNo($iLineNo = 0)
21-
{
20+
public function setLineNo($iLineNo = 0) {
2221
foreach($this->aComponents as $color_component) {
2322
$color_component->setLineNo($iLineNo);
2423
}

0 commit comments

Comments
 (0)