add events notifications
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
Filter activity
mentioned in merge request opacce!3376 (merged)
added 5 commits
-
4f5e3b55...67e32fa4 - 4 commits from branch
master
- a8beba96 - add events notifications
-
4f5e3b55...67e32fa4 - 4 commits from branch
- Resolved by Patrick Barroca
- src/Storm/Events.php 0 → 100644
31 32 /** @category testing */ 33 public static function setInstance($instance) { 34 static::$_instance = $instance; 35 } 36 37 38 public static function getInstance() { 39 return static::$_instance 40 ? static::$_instance 41 : static::$_instance = new static(); 42 } 43 44 45 public function __construct() { 46 $this->_observers = new Storm_Collection(); changed this line in version 4 of the diff
- src/Storm/Events.php 0 → 100644
39 return static::$_instance 40 ? static::$_instance 41 : static::$_instance = new static(); 42 } 43 44 45 public function __construct() { 46 $this->_observers = new Storm_Collection(); 47 } 48 49 50 /** 51 * @param $observer callable 52 */ 53 public function register($observer) { 54 $this->_observers->addIfNotPresent($observer); changed this line in version 4 of the diff
- Resolved by Patrick Barroca
mentioned in commit 17d31fdf