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

@ -17,7 +17,6 @@ class BikeBuilder implements BuilderInterface
*/ */
public function addDoors() public function addDoors()
{ {
} }
/** /**

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
*/ */
class Bike extends Vehicle class Bike extends Vehicle
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
*/ */
class Car extends Vehicle class Car extends Vehicle
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
*/ */
class Door class Door
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
*/ */
class Engine class Engine
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
*/ */
class Wheel class Wheel
{ {
} }

View File

@ -26,6 +26,5 @@ class Porsche implements VehicleInterface
*/ */
public function addTuningAMG() public function addTuningAMG()
{ {
} }
} }

View File

@ -32,7 +32,6 @@ class Multiton
*/ */
private function __construct() private function __construct()
{ {
} }
/** /**
@ -59,7 +58,6 @@ class Multiton
*/ */
private function __clone() private function __clone()
{ {
} }
/** /**
@ -69,6 +67,5 @@ class Multiton
*/ */
private function __wakeup() private function __wakeup()
{ {
} }
} }

View File

@ -17,6 +17,5 @@ class BarBookPrototype extends BookPrototype
*/ */
public function __clone() public function __clone()
{ {
} }
} }

View File

@ -14,6 +14,5 @@ class FooBookPrototype extends BookPrototype
*/ */
public function __clone() public function __clone()
{ {
} }
} }

View File

@ -14,6 +14,5 @@ class Bicycle implements VehicleInterface
*/ */
public function driveTo($destination) public function driveTo($destination)
{ {
} }
} }

View File

@ -12,6 +12,5 @@ class Scooter implements VehicleInterface
*/ */
public function driveTo($destination) public function driveTo($destination)
{ {
} }
} }

View File

@ -19,7 +19,6 @@ class Singleton
*/ */
public static function getInstance() public static function getInstance()
{ {
if (null === static::$instance) { if (null === static::$instance) {
static::$instance = new static; static::$instance = new static;
} }
@ -33,7 +32,6 @@ class Singleton
*/ */
private function __construct() private function __construct()
{ {
} }
/** /**
@ -43,7 +41,6 @@ class Singleton
*/ */
private function __clone() private function __clone()
{ {
} }
/** /**
@ -53,6 +50,5 @@ class Singleton
*/ */
private function __wakeup() private function __wakeup()
{ {
} }
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
*/ */
class FormatNumber implements FormatterInterface class FormatNumber implements FormatterInterface
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
*/ */
class FormatString implements FormatterInterface class FormatString implements FormatterInterface
{ {
} }

View File

@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
*/ */
interface FormatterInterface interface FormatterInterface
{ {
} }

View File

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

View File

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