Browse Source

Fix return errors.

euromark 11 years ago
parent
commit
276f4f2992
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Event/Event.php

+ 1 - 1
src/Event/Event.php

@@ -113,7 +113,7 @@ class Event {
  * @return void
  */
 	public function stopPropagation() {
-		return $this->_stopped = true;
+		$this->_stopped = true;
 	}
 
 /**