Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit e2d24ab

Browse files
committed
Merge branch 'master' of git://github.com/zendframework/zf2
15 parents 270cb67 + ec1abfc + 290ea90 + 9f4ca1b + edaa760 + c4c0c95 + d21f055 + 5b18029 + e6b97af + 010fb36 + 64c7b8d + 636523e + 4cc2cd6 + e34098a + 16367cd commit e2d24ab

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/PriorityQueue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Stdlib
17-
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
*/
2020

@@ -41,7 +41,7 @@
4141
*
4242
* @category Zend
4343
* @package Zend_Stdlib
44-
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
44+
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
4545
* @license http://framework.zend.com/license/new-bsd New BSD License
4646
*/
4747
class PriorityQueue implements Countable, IteratorAggregate, Serializable

test/CallbackHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ public function setUp()
4141
}
4242
}
4343

44-
public function testGetSignalShouldReturnSignal()
44+
public function testGetEventShouldReturnEvent()
4545
{
4646
$handler = new CallbackHandler('foo', 'rand');
47-
$this->assertEquals('foo', $handler->getSignal());
47+
$this->assertEquals('foo', $handler->getEvent());
4848
}
4949

5050
public function testCallbackShouldBeStringIfNoHandlerPassedToConstructor()

test/PriorityQueueTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @category Zend
1616
* @package Zend_Stdlib
1717
* @subpackage UnitTests
18-
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
18+
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
1919
* @license http://framework.zend.com/license/new-bsd New BSD License
2020
*/
2121

@@ -29,7 +29,7 @@
2929
* @package Zend_Stdlib
3030
* @subpackage UnitTests
3131
* @group Zend_Stdlib
32-
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
32+
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
3333
* @license http://framework.zend.com/license/new-bsd New BSD License
3434
*/
3535
class PriorityQueueTest extends \PHPUnit_Framework_TestCase

0 commit comments

Comments
 (0)