Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Globally fix braces
Browse files Browse the repository at this point in the history
php-cs-fixer fix . --fixers=braces
  • Loading branch information
EvanDotPro committed Jul 27, 2012
1 parent 7bb5e43 commit fe78a35
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/TestAsset/MockFirePhp.php
Expand Up @@ -3,13 +3,14 @@

use Zend\Log\Writer\FirePhp\FirePhpInterface;

class MockFirePhp implements FirePhpInterface {

class MockFirePhp implements FirePhpInterface
{
public $calls = array();

protected $enabled;

public function __construct($enabled = true) {
public function __construct($enabled = true)
{
$this->enabled = $enabled;
}

Expand Down

0 comments on commit fe78a35

Please sign in to comment.