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

@@ -32,13 +32,12 @@ class Multiton
*/
private function __construct()
{
}
/**
* gets the instance with the given name, e.g. Multiton::INSTANCE_1
* uses lazy initialization
*
*
* @param string $instanceName
*
* @return Multiton
@@ -59,7 +58,6 @@ class Multiton
*/
private function __clone()
{
}
/**
@@ -69,6 +67,5 @@ class Multiton
*/
private function __wakeup()
{
}
}