public function testFireEventParameters() { $paramOne = 123; $paramTwo = 456; $this->_subscriberOne->expects($this->once())->method('testEvent')->with($paramOne, $paramTwo); $this->_subscriberTwo->expects($this->once())->method('testEvent')->with($paramOne, $paramTwo); $this->_eventManager->fireEvent('testEvent', array($paramOne, $paramTwo)); }
/** * A test ended. * Method signature is implied by implemented interface, not all parameters are needed. * * @param PHPUnit_Framework_Test $test * @param float $time * * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function endTest(PHPUnit_Framework_Test $test, $time) { if (!$test instanceof PHPUnit_Framework_TestCase || $test instanceof PHPUnit_Framework_Warning) { return; } $this->_eventManager->fireEvent('endTest', array($test), true); }
/** * Rollback transaction and fire 'rollbackTransaction' event */ protected function _rollbackTransaction() { if ($this->_isTransactionActive) { $this->_getAdapter()->rollbackTransparentTransaction(); $this->_isTransactionActive = false; $this->_eventManager->fireEvent('rollbackTransaction'); } }
/** * Handler for 'core_app_init_current_store_after' event, that converts it into 'initStoreAfter' */ public function initStoreAfter() { $this->_eventManager->fireEvent('initStoreAfter'); }
/** * Handler for 'controller_front_init_before' event, that converts it into 'initFrontControllerBefore' */ public function initFrontControllerBefore() { $this->_eventManager->fireEvent('initFrontControllerBefore'); }