Commit 56e875e5 authored by Luke Mills's avatar Luke Mills

Merge branch 'dev-hotfix/fix-typo' into dev

parents cf05d760 8c3bb90d
...@@ -9,7 +9,7 @@ class EcomDev_PHPUnit_Helper ...@@ -9,7 +9,7 @@ class EcomDev_PHPUnit_Helper
/** /**
* Helpers container * Helpers container
* *
* @var EcomDev_PHPunit_Helper_Interface[] * @var EcomDev_PHPUnit_Helper_Interface[]
*/ */
protected static $helpers = array(); protected static $helpers = array();
...@@ -19,12 +19,12 @@ class EcomDev_PHPUnit_Helper ...@@ -19,12 +19,12 @@ class EcomDev_PHPUnit_Helper
* If $position is specified, it will use value * If $position is specified, it will use value
* from before or after key as related helper * from before or after key as related helper
* *
* @param EcomDev_PHPunit_Helper_Interface $helper * @param EcomDev_PHPUnit_Helper_Interface $helper
* @param bool|array $position * @param bool|array $position
* *
* @throws RuntimeException * @throws RuntimeException
*/ */
public static function add(EcomDev_PHPunit_Helper_Interface $helper, $position = false) public static function add(EcomDev_PHPUnit_Helper_Interface $helper, $position = false)
{ {
if ($position === false) { if ($position === false) {
self::$helpers[] = $helper; self::$helpers[] = $helper;
...@@ -82,7 +82,7 @@ class EcomDev_PHPUnit_Helper ...@@ -82,7 +82,7 @@ class EcomDev_PHPUnit_Helper
* if helper for action was not found it returns false * if helper for action was not found it returns false
* *
* @param $action * @param $action
* @return bool|EcomDev_PHPunit_Helper_Interface * @return bool|EcomDev_PHPUnit_Helper_Interface
*/ */
public static function getByAction($action) public static function getByAction($action)
{ {
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
/** /**
* Base helper implementation * Base helper implementation
*/ */
abstract class EcomDev_PHPUnit_Helper_Abstract implements EcomDev_PHPunit_Helper_Interface abstract class EcomDev_PHPUnit_Helper_Abstract implements EcomDev_PHPUnit_Helper_Interface
{ {
/** /**
* @var PHPUnit_Framework_TestCase * @var PHPUnit_Framework_TestCase
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* These methods are invoked when test setUp() or tearDown() is executed * These methods are invoked when test setUp() or tearDown() is executed
* *
*/ */
interface EcomDev_PHPUnit_Helper_Listener_Interface extends EcomDev_PHPunit_Helper_Interface interface EcomDev_PHPUnit_Helper_Listener_Interface extends EcomDev_PHPUnit_Helper_Interface
{ {
public function setUp(); public function setUp();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment