Skip to content

Commit

Permalink
Merge pull request #392 from peterkokot/patch-2
Browse files Browse the repository at this point in the history
stdClass first letter lowercased
  • Loading branch information
merk committed Nov 3, 2013
2 parents 727d018 + f5c90a1 commit 2ceb37b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Tests/Entity/CommentManagerTest.php
Expand Up @@ -49,7 +49,7 @@ public function setUp()
->method('getRepository')
->will($this->returnValue($this->repository));

$this->classMetadata = new \StdClass();
$this->classMetadata = new \stdClass();
$this->classMetadata->name = $this->class;

$this->em->expects($this->once())
Expand Down
2 changes: 1 addition & 1 deletion Tests/Entity/ThreadManagerTest.php
Expand Up @@ -45,7 +45,7 @@ public function setUp()
->method('getRepository')
->will($this->returnValue($this->repository));

$this->classMetadata = new \StdClass();
$this->classMetadata = new \stdClass();
$this->classMetadata->name = $this->class;

$this->em->expects($this->once())
Expand Down
2 changes: 1 addition & 1 deletion Tests/Entity/VoteManagerTest.php
Expand Up @@ -45,7 +45,7 @@ public function setUp()
->method('getRepository')
->will($this->returnValue($this->repository));

$this->classMetadata = new \StdClass();
$this->classMetadata = new \stdClass();
$this->classMetadata->name = $this->class;

$this->em->expects($this->once())
Expand Down
2 changes: 1 addition & 1 deletion Tests/Twig/CommentExtensionTest.php
Expand Up @@ -34,7 +34,7 @@ public function testIsVotableNonObject()

public function testIsntVotable()
{
$this->assertFalse($this->extension->isVotable(new \StdClass()));
$this->assertFalse($this->extension->isVotable(new \stdClass()));
}

public function testIsVotable()
Expand Down

0 comments on commit 2ceb37b

Please sign in to comment.