codestyle - remove trailing whitespaces

This commit is contained in:
Nils Rückmann
2015-03-27 12:19:20 +01:00
parent a6a6e18997
commit 2bc3d20e5e
41 changed files with 40 additions and 65 deletions

View File

@@ -4,7 +4,7 @@ namespace DesignPatterns\Behavioral\Observer;
/**
* Observer pattern : The observed object (the subject)
*
*
* The subject maintains a list of Observers and sends notifications.
*
*/

View File

@@ -10,7 +10,7 @@ class UserObserver implements \SplObserver
/**
* This is the only method to implement as an observer.
* It is called by the Subject (usually by SplSubject::notify() )
*
*
* @param \SplSubject $subject
*/
public function update(\SplSubject $subject)