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

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

View File

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