<?php
namespace Vehichle;

use Manufacturer, Bugatti;

class Veyron extends Car implements Chassi {

	use Engine;

	public static function make() {

		return __CLASS__;

	}

	/**
	 *	throttle
	 *
	 *	Implemented method must create a new throttle control and add items to dashboard.
	 *
 	 *	@param Pedal $pedal
 	 *	@param array $dashboardItems Items to add to {@see Dashboard}.
 	 *
 	 *	@return bool
	 */
	abstract public function throttle(Pedal $pedal, Array $dashboardItems);

}