Skip to content

Commit e6e6e62

Browse files
committed
Minor style fix.
1 parent 5e554b3 commit e6e6e62

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/Component.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ abstract class Component
3434
*
3535
* @return mixed
3636
*/
37-
public static function parse(Parser $parser, TokensList $list, array $options = array())
38-
{
37+
public static function parse(
38+
Parser $parser, TokensList $list, array $options = array()
39+
) {
3940
// This method should be abstract, but it can't be both static and
4041
// abstract.
4142
return null;
@@ -65,7 +66,7 @@ public static function build($component)
6566
*
6667
* @return string
6768
*/
68-
public function __toString()
69+
public function __toString()
6970
{
7071
return static::build($this);
7172
}

src/Components/ExpressionArray.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ public static function parse(Parser $parser, TokensList $list, array $options =
3636
{
3737
$ret = array();
3838

39-
$expr = null;
40-
4139
/**
4240
* The state of the parser.
4341
*

0 commit comments

Comments
 (0)