improved phpdoc
This commit is contained in:
		| @@ -21,7 +21,7 @@ class TimerManager { | ||||
| 	/** | ||||
| 	 * Construct a new Timer Manager | ||||
| 	 * | ||||
| 	 * @param \ManiaControl\ManiaControl $maniaControl | ||||
| 	 * @param ManiaControl $maniaControl | ||||
| 	 */ | ||||
| 	public function __construct(ManiaControl $maniaControl) { | ||||
| 		$this->maniaControl = $maniaControl; | ||||
| @@ -31,8 +31,8 @@ class TimerManager { | ||||
| 	 * Registers a One Time Listening | ||||
| 	 * | ||||
| 	 * @param TimerListener $listener | ||||
| 	 * @param               $method | ||||
| 	 * @param               $time | ||||
| 	 * @param string        $method | ||||
| 	 * @param float         $time | ||||
| 	 */ | ||||
| 	public function registerOneTimeListening(TimerListener $listener, $method, $time) { | ||||
| 		$this->registerTimerListening($listener, $method, $time, true); | ||||
| @@ -74,7 +74,7 @@ class TimerManager { | ||||
| 	 * Unregister a Timer Listening | ||||
| 	 * | ||||
| 	 * @param TimerListener $listener | ||||
| 	 * @param               $method | ||||
| 	 * @param string        $method | ||||
| 	 * @return bool | ||||
| 	 */ | ||||
| 	public function unregisterTimerListening(TimerListener $listener, $method) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user