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

Commit

Permalink
remove unnecessary space after function name
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jun 27, 2013
3 parents 130a50a + f12feba + 4452247 commit a4cd963
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/Adapter/ArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ class ArrayTest extends \PHPUnit_Framework_TestCase
/**
* Prepares the environment before running a test.
*/
protected function setUp ()
protected function setUp()
{
parent::setUp();
$this->adapter = new Adapter\ArrayAdapter(range(1, 101));
}
/**
* Cleans up the environment after running a test.
*/
protected function tearDown ()
protected function tearDown()
{
$this->adapter = null;
parent::tearDown();
Expand Down
4 changes: 2 additions & 2 deletions test/Adapter/IteratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class IteratorTest extends \PHPUnit_Framework_TestCase
/**
* Prepares the environment before running a test.
*/
protected function setUp ()
protected function setUp()
{
parent::setUp();
$iterator = new \ArrayIterator(range(1, 101));
Expand All @@ -39,7 +39,7 @@ protected function setUp ()
/**
* Cleans up the environment after running a test.
*/
protected function tearDown ()
protected function tearDown()
{
$this->adapter = null;
parent::tearDown();
Expand Down
2 changes: 1 addition & 1 deletion test/Adapter/NullTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class NullTest extends \PHPUnit_Framework_TestCase
/**
* Prepares the environment before running a test.
*/
protected function setUp ()
protected function setUp()
{
parent::setUp();
$this->adapter = new Adapter\Null(101);
Expand Down
2 changes: 1 addition & 1 deletion test/ScrollingStyle/AllTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function setUp()
/**
* Cleans up the environment after running a test.
*/
protected function tearDown ()
protected function tearDown()
{
$this->scrollingStyle = null;
$this->paginator = null;
Expand Down

0 comments on commit a4cd963

Please sign in to comment.