Skip to content

Commit c95c110

Browse files
committed
CS fixes
1 parent 38d04bd commit c95c110

File tree

1 file changed

+5
-5
lines changed
  • tests/LdcZfcUserOAuth2Test/Authentication/Adapter

1 file changed

+5
-5
lines changed

tests/LdcZfcUserOAuth2Test/Authentication/Adapter/DbTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66

77
class DbTest extends \PHPUnit_Framework_TestCase
88
{
9-
9+
1010
public function testGetStorageWillInstantiateNonPersistentAdapterByDefault()
1111
{
1212
$db = new Db();
1313
$this->assertInstanceOf('\Zend\Authentication\Storage\NonPersistent', $db->getStorage());
1414
}
15-
15+
1616
// Everything below here is taken from ZfcUserTest\Authentication\Adapter
17-
18-
17+
18+
1919
/**
2020
* The object to be tested.
2121
*
@@ -75,7 +75,7 @@ protected function setUp()
7575
$user = $this->getMock('ZfcUser\Entity\User');
7676
$this->user = $user;
7777

78-
$this->db = new Db;
78+
$this->db = new Db();
7979
$this->db->setStorage($this->storage);
8080
}
8181

0 commit comments

Comments
 (0)