Applied fixes from StyleCI

This commit is contained in:
Dominik Liebler
2015-12-21 07:28:20 -05:00
committed by StyleCI Bot
parent 3663603b80
commit fe1f144ec3
167 changed files with 510 additions and 517 deletions

View File

@@ -2,15 +2,14 @@
namespace DesignPatterns\Behavioral\Observer\Tests;
use DesignPatterns\Behavioral\Observer\UserObserver;
use DesignPatterns\Behavioral\Observer\User;
use DesignPatterns\Behavioral\Observer\UserObserver;
/**
* ObserverTest tests the Observer pattern
* ObserverTest tests the Observer pattern.
*/
class ObserverTest extends \PHPUnit_Framework_TestCase
{
protected $observer;
protected function setUp()
@@ -19,7 +18,7 @@ class ObserverTest extends \PHPUnit_Framework_TestCase
}
/**
* Tests the notification
* Tests the notification.
*/
public function testNotify()
{
@@ -31,7 +30,7 @@ class ObserverTest extends \PHPUnit_Framework_TestCase
}
/**
* Tests the subscribing
* Tests the subscribing.
*/
public function testAttachDetach()
{
@@ -53,7 +52,7 @@ class ObserverTest extends \PHPUnit_Framework_TestCase
}
/**
* Tests the update() invocation on a mockup
* Tests the update() invocation on a mockup.
*/
public function testUpdateCalling()
{