Skip to content

Commit

Permalink
Make PHPCS happy.
Browse files Browse the repository at this point in the history
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
  • Loading branch information
Tithugues committed Jul 19, 2015
1 parent 2069f50 commit 5fcd7cb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions libraries/sql-parser/src/Component.php
Expand Up @@ -34,8 +34,11 @@ abstract class Component
*
* @return mixed
*/
public static function parse(Parser $parser, TokensList $list, array $options = array())
{
public static function parse(
Parser $parser,
TokensList $list,
array $options = array()
) {
// This method should be abstract, but it can't be both static and
// abstract.
return null;
Expand Down Expand Up @@ -65,7 +68,7 @@ public static function build($component)
*
* @return string
*/
public function __toString()
public function __toString()
{
return static::build($this);
}
Expand Down

0 comments on commit 5fcd7cb

Please sign in to comment.