Skip to content

Commit 9e50fe3

Browse files
committed
Code cleanup (PSR-2) and some refactoring
- Basic syntax checking and cleanup - Changed code for a little more consistency
1 parent b69f942 commit 9e50fe3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Codeception/Module/Sequence.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22
namespace Codeception\Module;
33

4+
use Codeception\Module as CodeceptionModule;
45
use Codeception\Exception\ModuleException;
56
use Codeception\TestCase;
67

@@ -50,9 +51,8 @@
5051
* ```
5152
*
5253
*/
53-
class Sequence extends \Codeception\Module
54+
class Sequence extends CodeceptionModule
5455
{
55-
5656
public static $hash = array();
5757

5858
public function _after(TestCase $t)
@@ -64,5 +64,5 @@ public function _after(TestCase $t)
6464
if (!function_exists('sq')) {
6565
require_once __DIR__ . '/../Util/sq.php';
6666
} else {
67-
throw new ModuleException('Codeception\Module\Sequence', "function 'sq' already defiend");
67+
throw new ModuleException('Codeception\Module\Sequence', "function 'sq' already defined");
6868
}

0 commit comments

Comments
 (0)