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

@@ -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)