Merge pull request #130 from nueckman/codestyle-1

codestyle - remove trailing whitespaces
This commit is contained in:
Dominik Liebler
2015-04-09 21:40:48 +02:00
41 changed files with 40 additions and 65 deletions

View File

@@ -12,7 +12,6 @@ class Book implements PaperBookInterface
*/
public function open()
{
}
/**
@@ -20,6 +19,5 @@ class Book implements PaperBookInterface
*/
public function turnPage()
{
}
}

View File

@@ -4,7 +4,7 @@ namespace DesignPatterns\Structural\Adapter;
/**
* EBookAdapter is an adapter to fit an e-book like a paper book
*
*
* This is the adapter here. Notice it implements PaperBookInterface,
* therefore you don't have to change the code of the client which using paper book.
*/

View File

@@ -12,7 +12,6 @@ class Kindle implements EBookInterface
*/
public function pressNext()
{
}
/**
@@ -20,6 +19,5 @@ class Kindle implements EBookInterface
*/
public function pressStart()
{
}
}