From 2bc3d20e5e232f448ce8403c96a351ab11f258cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nils=20R=C3=BCckmann?= <mail@nueckman.de>
Date: Fri, 27 Mar 2015 12:19:20 +0100
Subject: [PATCH] codestyle - remove trailing whitespaces

---
 Behavioral/Command/HelloCommand.php                    |  2 +-
 Behavioral/NullObject/LoggerInterface.php              |  2 +-
 Behavioral/NullObject/NullLogger.php                   |  2 +-
 Behavioral/Observer/User.php                           |  2 +-
 Behavioral/Observer/UserObserver.php                   |  2 +-
 Behavioral/Specification/Either.php                    |  6 +++---
 Behavioral/Specification/Item.php                      |  4 ++--
 Behavioral/Specification/Not.php                       |  6 +++---
 Behavioral/TemplateMethod/Journey.php                  |  2 +-
 Behavioral/Visitor/RoleVisitorInterface.php            |  8 ++++----
 Creational/AbstractFactory/AbstractFactory.php         |  4 ++--
 .../AbstractFactory/Tests/AbstractFactoryTest.php      |  4 ++--
 Creational/Builder/BikeBuilder.php                     |  1 -
 Creational/Builder/Director.php                        |  4 ++--
 Creational/Builder/Parts/Bike.php                      |  1 -
 Creational/Builder/Parts/Car.php                       |  1 -
 Creational/Builder/Parts/Door.php                      |  1 -
 Creational/Builder/Parts/Engine.php                    |  1 -
 Creational/Builder/Parts/Wheel.php                     |  1 -
 Creational/Builder/Tests/DirectorTest.php              |  2 +-
 Creational/FactoryMethod/FactoryMethod.php             | 10 +++++-----
 Creational/FactoryMethod/Porsche.php                   |  1 -
 Creational/Multiton/Multiton.php                       |  5 +----
 Creational/Pool/Tests/TestWorker.php                   |  2 +-
 Creational/Prototype/BarBookPrototype.php              |  1 -
 Creational/Prototype/FooBookPrototype.php              |  1 -
 Creational/SimpleFactory/Bicycle.php                   |  1 -
 Creational/SimpleFactory/ConcreteFactory.php           |  2 +-
 Creational/SimpleFactory/Scooter.php                   |  1 -
 Creational/Singleton/Singleton.php                     |  4 ----
 Creational/StaticFactory/FormatNumber.php              |  1 -
 Creational/StaticFactory/FormatString.php              |  1 -
 Creational/StaticFactory/FormatterInterface.php        |  1 -
 More/Repository/PostRepository.php                     |  4 ++--
 Structural/Adapter/Book.php                            |  2 --
 Structural/Adapter/EBookAdapter.php                    |  2 +-
 Structural/Adapter/Kindle.php                          |  2 --
 Structural/Decorator/Decorator.php                     |  2 +-
 Structural/Decorator/Tests/DecoratorTest.php           |  2 +-
 Structural/Facade/Facade.php                           |  2 +-
 Structural/FluentInterface/Sql.php                     |  2 +-
 41 files changed, 40 insertions(+), 65 deletions(-)

diff --git a/Behavioral/Command/HelloCommand.php b/Behavioral/Command/HelloCommand.php
index 3dd55b1..eb630ed 100644
--- a/Behavioral/Command/HelloCommand.php
+++ b/Behavioral/Command/HelloCommand.php
@@ -4,7 +4,7 @@ namespace DesignPatterns\Behavioral\Command;
 
 /**
  * This concrete command calls "print" on the Receiver, but an external
- * invoker just know he can call "execute" 
+ * invoker just know he can call "execute"
  */
 class HelloCommand implements CommandInterface
 {
diff --git a/Behavioral/NullObject/LoggerInterface.php b/Behavioral/NullObject/LoggerInterface.php
index 250c5a3..216d838 100644
--- a/Behavioral/NullObject/LoggerInterface.php
+++ b/Behavioral/NullObject/LoggerInterface.php
@@ -4,7 +4,7 @@ namespace DesignPatterns\Behavioral\NullObject;
 
 /**
  * LoggerInterface is a contract for logging something
- * 
+ *
  * Key feature: NullLogger MUST inherit from this interface like any other Loggers
  */
 interface LoggerInterface
diff --git a/Behavioral/NullObject/NullLogger.php b/Behavioral/NullObject/NullLogger.php
index 49ff51e..a4bf469 100644
--- a/Behavioral/NullObject/NullLogger.php
+++ b/Behavioral/NullObject/NullLogger.php
@@ -5,7 +5,7 @@ namespace DesignPatterns\Behavioral\NullObject;
 /**
  * Performance concerns : ok there is a call for nothing but we spare an "if is_null"
  * I didn't run a benchmark but I think it's equivalent.
- * 
+ *
  * Key feature : of course this logger MUST implement the same interface (or abstract)
  * like the other loggers.
  */
diff --git a/Behavioral/Observer/User.php b/Behavioral/Observer/User.php
index b7ffd19..013f194 100644
--- a/Behavioral/Observer/User.php
+++ b/Behavioral/Observer/User.php
@@ -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.
  *
  */
diff --git a/Behavioral/Observer/UserObserver.php b/Behavioral/Observer/UserObserver.php
index 444a0eb..f444604 100644
--- a/Behavioral/Observer/UserObserver.php
+++ b/Behavioral/Observer/UserObserver.php
@@ -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)
diff --git a/Behavioral/Specification/Either.php b/Behavioral/Specification/Either.php
index 3479460..bb7ef01 100644
--- a/Behavioral/Specification/Either.php
+++ b/Behavioral/Specification/Either.php
@@ -12,7 +12,7 @@ class Either extends AbstractSpecification
 
     /**
      * A composite wrapper of two specifications
-     * 
+     *
      * @param SpecificationInterface $left
      * @param SpecificationInterface $right
      */
@@ -24,9 +24,9 @@ class Either extends AbstractSpecification
 
     /**
      * Returns the evaluation of both wrapped specifications as a logical OR
-     * 
+     *
      * @param Item $item
-     * 
+     *
      * @return bool
      */
     public function isSatisfiedBy(Item $item)
diff --git a/Behavioral/Specification/Item.php b/Behavioral/Specification/Item.php
index 5889587..ff24a50 100644
--- a/Behavioral/Specification/Item.php
+++ b/Behavioral/Specification/Item.php
@@ -10,7 +10,7 @@ class Item
 
     /**
      * An item must have a price
-     * 
+     *
      * @param int $price
      */
     public function __construct($price)
@@ -20,7 +20,7 @@ class Item
 
     /**
      * Get the items price
-     * 
+     *
      * @return int
      */
     public function getPrice()
diff --git a/Behavioral/Specification/Not.php b/Behavioral/Specification/Not.php
index 64b5c10..6cf578c 100644
--- a/Behavioral/Specification/Not.php
+++ b/Behavioral/Specification/Not.php
@@ -11,7 +11,7 @@ class Not extends AbstractSpecification
 
     /**
      * Creates a new specification wrapping another
-     * 
+     *
      * @param SpecificationInterface $spec
      */
     public function __construct(SpecificationInterface $spec)
@@ -21,9 +21,9 @@ class Not extends AbstractSpecification
 
     /**
      * Returns the negated result of the wrapped specification
-     * 
+     *
      * @param Item $item
-     * 
+     *
      * @return bool
      */
     public function isSatisfiedBy(Item $item)
diff --git a/Behavioral/TemplateMethod/Journey.php b/Behavioral/TemplateMethod/Journey.php
index fbf79d4..cec9a7d 100644
--- a/Behavioral/TemplateMethod/Journey.php
+++ b/Behavioral/TemplateMethod/Journey.php
@@ -10,7 +10,7 @@ abstract class Journey
     /**
      * This is the public service provided by this class and its subclasses.
      * Notice it is final to "freeze" the global behavior of algorithm.
-     * If you want to override this contract, make an interface with only takeATrip() 
+     * If you want to override this contract, make an interface with only takeATrip()
      * and subclass it.
      */
     final public function takeATrip()
diff --git a/Behavioral/Visitor/RoleVisitorInterface.php b/Behavioral/Visitor/RoleVisitorInterface.php
index 3c9e24a..b007b13 100644
--- a/Behavioral/Visitor/RoleVisitorInterface.php
+++ b/Behavioral/Visitor/RoleVisitorInterface.php
@@ -6,10 +6,10 @@ namespace DesignPatterns\Behavioral\Visitor;
  * Visitor Pattern
  *
  * The contract for the visitor.
- * 
+ *
  * Note 1 : in C++ or java, with method polymorphism based on type-hint, there are many
  * methods visit() with different type for the 'role' parameter.
- * 
+ *
  * Note 2 : the visitor must not choose itself which method to
  * invoke, it is the Visitee that make this decision.
  */
@@ -17,14 +17,14 @@ interface RoleVisitorInterface
 {
     /**
      * Visit a User object
-     * 
+     *
      * @param \DesignPatterns\Behavioral\Visitor\User $role
      */
     public function visitUser(User $role);
 
     /**
      * Visit a Group object
-     * 
+     *
      * @param \DesignPatterns\Behavioral\Visitor\Group $role
      */
     public function visitGroup(Group $role);
diff --git a/Creational/AbstractFactory/AbstractFactory.php b/Creational/AbstractFactory/AbstractFactory.php
index 84b4203..49982e5 100644
--- a/Creational/AbstractFactory/AbstractFactory.php
+++ b/Creational/AbstractFactory/AbstractFactory.php
@@ -21,7 +21,7 @@ abstract class AbstractFactory
 {
     /**
      * Creates a text component
-     * 
+     *
      * @param string $content
      *
      * @return Text
@@ -30,7 +30,7 @@ abstract class AbstractFactory
 
     /**
      * Creates a picture component
-     * 
+     *
      * @param string $path
      * @param string $name
      *
diff --git a/Creational/AbstractFactory/Tests/AbstractFactoryTest.php b/Creational/AbstractFactory/Tests/AbstractFactoryTest.php
index 9c61f96..b51394a 100644
--- a/Creational/AbstractFactory/Tests/AbstractFactoryTest.php
+++ b/Creational/AbstractFactory/Tests/AbstractFactoryTest.php
@@ -21,9 +21,9 @@ class AbstractFactoryTest extends \PHPUnit_Framework_TestCase
 
     /**
      * This is the client of factories. Note that the client does not
-     * care which factory is given to him, he can create any component he 
+     * care which factory is given to him, he can create any component he
      * wants and render how he wants.
-     * 
+     *
      * @dataProvider getFactories
      */
     public function testComponentCreation(AbstractFactory $factory)
diff --git a/Creational/Builder/BikeBuilder.php b/Creational/Builder/BikeBuilder.php
index 477e1ad..53d53d3 100644
--- a/Creational/Builder/BikeBuilder.php
+++ b/Creational/Builder/BikeBuilder.php
@@ -17,7 +17,6 @@ class BikeBuilder implements BuilderInterface
      */
     public function addDoors()
     {
-
     }
 
     /**
diff --git a/Creational/Builder/Director.php b/Creational/Builder/Director.php
index 0c11877..d7f3aa3 100644
--- a/Creational/Builder/Director.php
+++ b/Creational/Builder/Director.php
@@ -4,8 +4,8 @@ namespace DesignPatterns\Creational\Builder;
 
 /**
  * Director is part of the builder pattern. It knows the interface of the builder
- * and builds a complex object with the help of the builder. 
- * 
+ * and builds a complex object with the help of the builder.
+ *
  * You can also inject many builders instead of one to build more complex objects
  */
 class Director
diff --git a/Creational/Builder/Parts/Bike.php b/Creational/Builder/Parts/Bike.php
index 307b3e0..6efefe9 100644
--- a/Creational/Builder/Parts/Bike.php
+++ b/Creational/Builder/Parts/Bike.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
  */
 class Bike extends Vehicle
 {
-
 }
diff --git a/Creational/Builder/Parts/Car.php b/Creational/Builder/Parts/Car.php
index a18b301..1d4496c 100644
--- a/Creational/Builder/Parts/Car.php
+++ b/Creational/Builder/Parts/Car.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
  */
 class Car extends Vehicle
 {
-
 }
diff --git a/Creational/Builder/Parts/Door.php b/Creational/Builder/Parts/Door.php
index aa08772..526d41b 100644
--- a/Creational/Builder/Parts/Door.php
+++ b/Creational/Builder/Parts/Door.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
  */
 class Door
 {
-
 }
diff --git a/Creational/Builder/Parts/Engine.php b/Creational/Builder/Parts/Engine.php
index 08d5bd0..0b2fad0 100644
--- a/Creational/Builder/Parts/Engine.php
+++ b/Creational/Builder/Parts/Engine.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
  */
 class Engine
 {
-
 }
diff --git a/Creational/Builder/Parts/Wheel.php b/Creational/Builder/Parts/Wheel.php
index 19ef7c3..7fb60fd 100644
--- a/Creational/Builder/Parts/Wheel.php
+++ b/Creational/Builder/Parts/Wheel.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\Builder\Parts;
  */
 class Wheel
 {
-
 }
diff --git a/Creational/Builder/Tests/DirectorTest.php b/Creational/Builder/Tests/DirectorTest.php
index 33e853e..0520bfe 100644
--- a/Creational/Builder/Tests/DirectorTest.php
+++ b/Creational/Builder/Tests/DirectorTest.php
@@ -31,7 +31,7 @@ class DirectorTest extends \PHPUnit_Framework_TestCase
     /**
      * Here we test the build process. Notice that the client don't know
      * anything about the concrete builder.
-     * 
+     *
      * @dataProvider getBuilder
      */
     public function testBuild(BuilderInterface $builder)
diff --git a/Creational/FactoryMethod/FactoryMethod.php b/Creational/FactoryMethod/FactoryMethod.php
index e4f3771..dd24b15 100644
--- a/Creational/FactoryMethod/FactoryMethod.php
+++ b/Creational/FactoryMethod/FactoryMethod.php
@@ -13,20 +13,20 @@ abstract class FactoryMethod
 
     /**
      * The children of the class must implement this method
-     * 
+     *
      * Sometimes this method can be public to get "raw" object
-     * 
+     *
      * @param string $type a generic type
-     * 
+     *
      * @return VehicleInterface a new vehicle
      */
     abstract protected function createVehicle($type);
 
     /**
      * Creates a new vehicle
-     * 
+     *
      * @param int $type
-     * 
+     *
      * @return VehicleInterface a new vehicle
      */
     public function create($type)
diff --git a/Creational/FactoryMethod/Porsche.php b/Creational/FactoryMethod/Porsche.php
index 818a082..cba25ce 100644
--- a/Creational/FactoryMethod/Porsche.php
+++ b/Creational/FactoryMethod/Porsche.php
@@ -26,6 +26,5 @@ class Porsche implements VehicleInterface
      */
     public function addTuningAMG()
     {
-
     }
 }
diff --git a/Creational/Multiton/Multiton.php b/Creational/Multiton/Multiton.php
index e10c513..44f1ef0 100644
--- a/Creational/Multiton/Multiton.php
+++ b/Creational/Multiton/Multiton.php
@@ -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()
     {
-
     }
 }
diff --git a/Creational/Pool/Tests/TestWorker.php b/Creational/Pool/Tests/TestWorker.php
index 7c2c2db..3cfbef5 100644
--- a/Creational/Pool/Tests/TestWorker.php
+++ b/Creational/Pool/Tests/TestWorker.php
@@ -1,4 +1,4 @@
-<?php 
+<?php
 
 namespace DesignPatterns\Creational\Pool\Tests;
 
diff --git a/Creational/Prototype/BarBookPrototype.php b/Creational/Prototype/BarBookPrototype.php
index 971d00e..4354a60 100644
--- a/Creational/Prototype/BarBookPrototype.php
+++ b/Creational/Prototype/BarBookPrototype.php
@@ -17,6 +17,5 @@ class BarBookPrototype extends BookPrototype
      */
     public function __clone()
     {
-
     }
 }
diff --git a/Creational/Prototype/FooBookPrototype.php b/Creational/Prototype/FooBookPrototype.php
index 9eb19d3..9707bfd 100644
--- a/Creational/Prototype/FooBookPrototype.php
+++ b/Creational/Prototype/FooBookPrototype.php
@@ -14,6 +14,5 @@ class FooBookPrototype extends BookPrototype
      */
     public function __clone()
     {
-
     }
 }
diff --git a/Creational/SimpleFactory/Bicycle.php b/Creational/SimpleFactory/Bicycle.php
index 75cb413..67215f1 100644
--- a/Creational/SimpleFactory/Bicycle.php
+++ b/Creational/SimpleFactory/Bicycle.php
@@ -14,6 +14,5 @@ class Bicycle implements VehicleInterface
      */
     public function driveTo($destination)
     {
-
     }
 }
diff --git a/Creational/SimpleFactory/ConcreteFactory.php b/Creational/SimpleFactory/ConcreteFactory.php
index 177290c..dd8acf8 100644
--- a/Creational/SimpleFactory/ConcreteFactory.php
+++ b/Creational/SimpleFactory/ConcreteFactory.php
@@ -26,7 +26,7 @@ class ConcreteFactory
 
     /**
      * Creates a vehicle
-     * 
+     *
      * @param string $type a known type key
      *
      * @return VehicleInterface a new instance of VehicleInterface
diff --git a/Creational/SimpleFactory/Scooter.php b/Creational/SimpleFactory/Scooter.php
index 710c8cd..81fa505 100644
--- a/Creational/SimpleFactory/Scooter.php
+++ b/Creational/SimpleFactory/Scooter.php
@@ -12,6 +12,5 @@ class Scooter implements VehicleInterface
      */
     public function driveTo($destination)
     {
-
     }
 }
diff --git a/Creational/Singleton/Singleton.php b/Creational/Singleton/Singleton.php
index 00f0440..41a4569 100644
--- a/Creational/Singleton/Singleton.php
+++ b/Creational/Singleton/Singleton.php
@@ -19,7 +19,6 @@ class Singleton
      */
     public static function getInstance()
     {
-        
         if (null === static::$instance) {
             static::$instance = new static;
         }
@@ -33,7 +32,6 @@ class Singleton
      */
     private function __construct()
     {
-
     }
 
     /**
@@ -43,7 +41,6 @@ class Singleton
      */
     private function __clone()
     {
-
     }
 
     /**
@@ -53,6 +50,5 @@ class Singleton
      */
     private function __wakeup()
     {
-
     }
 }
diff --git a/Creational/StaticFactory/FormatNumber.php b/Creational/StaticFactory/FormatNumber.php
index 93ac7c7..8f382f7 100644
--- a/Creational/StaticFactory/FormatNumber.php
+++ b/Creational/StaticFactory/FormatNumber.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
  */
 class FormatNumber implements FormatterInterface
 {
-
 }
diff --git a/Creational/StaticFactory/FormatString.php b/Creational/StaticFactory/FormatString.php
index 6578b68..a0d174d 100644
--- a/Creational/StaticFactory/FormatString.php
+++ b/Creational/StaticFactory/FormatString.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
  */
 class FormatString implements FormatterInterface
 {
-
 }
diff --git a/Creational/StaticFactory/FormatterInterface.php b/Creational/StaticFactory/FormatterInterface.php
index 969f047..81b9149 100644
--- a/Creational/StaticFactory/FormatterInterface.php
+++ b/Creational/StaticFactory/FormatterInterface.php
@@ -7,5 +7,4 @@ namespace DesignPatterns\Creational\StaticFactory;
  */
 interface FormatterInterface
 {
-
 }
diff --git a/More/Repository/PostRepository.php b/More/Repository/PostRepository.php
index 3feeffa..68d4fcf 100644
--- a/More/Repository/PostRepository.php
+++ b/More/Repository/PostRepository.php
@@ -5,10 +5,10 @@ namespace DesignPatterns\Repository;
 /**
  * Repository for class Post
  * This class is between Entity layer(class Post) and access object layer(interface Storage)
- * 
+ *
  * Repository encapsulates the set of objects persisted in a data store and the operations performed over them
  * providing a more object-oriented view of the persistence layer
- * 
+ *
  * Repository also supports the objective of achieving a clean separation and one-way dependency
  * between the domain and data mapping layers
  *
diff --git a/Structural/Adapter/Book.php b/Structural/Adapter/Book.php
index f0ce83c..ae3c6dc 100644
--- a/Structural/Adapter/Book.php
+++ b/Structural/Adapter/Book.php
@@ -12,7 +12,6 @@ class Book implements PaperBookInterface
      */
     public function open()
     {
-
     }
 
     /**
@@ -20,6 +19,5 @@ class Book implements PaperBookInterface
      */
     public function turnPage()
     {
-
     }
 }
diff --git a/Structural/Adapter/EBookAdapter.php b/Structural/Adapter/EBookAdapter.php
index ed0fb17..a6c6476 100644
--- a/Structural/Adapter/EBookAdapter.php
+++ b/Structural/Adapter/EBookAdapter.php
@@ -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.
  */
diff --git a/Structural/Adapter/Kindle.php b/Structural/Adapter/Kindle.php
index 760e5f8..14dc485 100644
--- a/Structural/Adapter/Kindle.php
+++ b/Structural/Adapter/Kindle.php
@@ -12,7 +12,6 @@ class Kindle implements EBookInterface
      */
     public function pressNext()
     {
-
     }
 
     /**
@@ -20,6 +19,5 @@ class Kindle implements EBookInterface
      */
     public function pressStart()
     {
-
     }
 }
diff --git a/Structural/Decorator/Decorator.php b/Structural/Decorator/Decorator.php
index f6e377e..182c07a 100644
--- a/Structural/Decorator/Decorator.php
+++ b/Structural/Decorator/Decorator.php
@@ -21,7 +21,7 @@ abstract class Decorator implements RendererInterface
     /**
      * You must type-hint the wrapped component :
      * It ensures you can call renderData() in the subclasses !
-     * 
+     *
      * @param RendererInterface $wrappable
      */
     public function __construct(RendererInterface $wrappable)
diff --git a/Structural/Decorator/Tests/DecoratorTest.php b/Structural/Decorator/Tests/DecoratorTest.php
index a824625..1789870 100644
--- a/Structural/Decorator/Tests/DecoratorTest.php
+++ b/Structural/Decorator/Tests/DecoratorTest.php
@@ -46,7 +46,7 @@ class DecoratorTest extends \PHPUnit_Framework_TestCase
 
     /**
      * Second key-point of this pattern : the decorator is type-hinted
-     * 
+     *
      * @expectedException \PHPUnit_Framework_Error
      */
     public function testDecoratorTypeHinted()
diff --git a/Structural/Facade/Facade.php b/Structural/Facade/Facade.php
index d40d412..c0048b4 100644
--- a/Structural/Facade/Facade.php
+++ b/Structural/Facade/Facade.php
@@ -4,7 +4,7 @@ namespace DesignPatterns\Structural\Facade;
 
 /**
  *
- * 
+ *
  */
 class Facade
 {
diff --git a/Structural/FluentInterface/Sql.php b/Structural/FluentInterface/Sql.php
index 3afd300..35af3ef 100644
--- a/Structural/FluentInterface/Sql.php
+++ b/Structural/FluentInterface/Sql.php
@@ -66,7 +66,7 @@ class Sql
     }
 
     /**
-     * Gets the query, just an example of building a query, 
+     * Gets the query, just an example of building a query,
      * no check on consistency
      *
      * @return string