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

Commit

Permalink
tidying up cs
Browse files Browse the repository at this point in the history
  • Loading branch information
tr committed Aug 7, 2012
1 parent d770754 commit 892dcff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/EventManagerTest.php
Expand Up @@ -612,9 +612,13 @@ public function testSettingSharedEventManagerSetsStaticEventManagerInstance()
$this->assertSame($shared, StaticEventManager::getInstance());
}

public function testSharedEventManagerAttachReturnsCallbackHander(){
public function testSharedEventManagerAttachReturnsCallbackHandler()
{
$shared = new SharedEventManager;
$callbackHandler = $shared->attach('foo', 'bar', function($e){
$callbackHandler = $shared->attach(
'foo',
'bar',
function($e) {
return true;
}
);
Expand Down

0 comments on commit 892dcff

Please sign in to comment.