@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | public function SelfMemberReferenceUnitTestExample() |
15 | 15 | { |
16 | - $testResults =& $this->testResults; |
|
16 | + $testResults = & $this->testResults; |
|
17 | 17 | |
18 | 18 | |
19 | 19 | // Correct call to self. |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | MyClass::test($value); |
58 | 58 | }; |
59 | 59 | |
60 | - $array = array(1,2,3); |
|
60 | + $array = array(1, 2, 3); |
|
61 | 61 | array_walk($array, $callback); |
62 | 62 | } |
63 | 63 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 48 => 1, |
58 | 58 | 70 => 1, |
59 | 59 | 71 => 1, |
60 | - ); |
|
60 | + ); |
|
61 | 61 | |
62 | 62 | }//end getErrorList() |
63 | 63 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 48 => 1, |
58 | 58 | 70 => 1, |
59 | 59 | 71 => 1, |
60 | - ); |
|
60 | + ); |
|
61 | 61 | |
62 | 62 | }//end getErrorList() |
63 | 63 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | class ValidCamelCaseClassEndingWithNumber5 extends MyClass {} |
32 | 32 | class 12345 extends MyClass {} |
33 | 33 | |
34 | -class Testing{} |
|
34 | +class Testing {} |
|
35 | 35 | |
36 | 36 | class Base |
37 | 37 | { |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 48 => 1, |
58 | 58 | 70 => 1, |
59 | 59 | 71 => 1, |
60 | - ); |
|
60 | + ); |
|
61 | 61 | |
62 | 62 | }//end getErrorList() |
63 | 63 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 48 => 1, |
58 | 58 | 70 => 1, |
59 | 59 | 71 => 1, |
60 | - ); |
|
60 | + ); |
|
61 | 61 | |
62 | 62 | }//end getErrorList() |
63 | 63 |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | |
4 | 4 | |
5 | - class ClassDeclaration |
|
5 | + class ClassDeclaration |
|
6 | 6 | { |
7 | 7 | |
8 | 8 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | }//end class |
58 | 58 | |
59 | -class ClassOne implements ClassFour ,ClassFive, ClassSix |
|
59 | +class ClassOne implements ClassFour, ClassFive, ClassSix |
|
60 | 60 | { |
61 | 61 | }//end class |
62 | 62 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | |
83 | 83 | }//end class |
84 | 84 | |
85 | -class File implements \Zend_Auth_Storage_Interface,\Zend_Auth_Storage, \Zend_Foo |
|
85 | +class File implements \Zend_Auth_Storage_Interface, \Zend_Auth_Storage, \Zend_Foo |
|
86 | 86 | { |
87 | 87 | } |
88 | 88 | |
@@ -107,4 +107,4 @@ discard block |
||
107 | 107 | class IncorrectCodeBeforeClosingBrace |
108 | 108 | { |
109 | 109 | |
110 | -echo phpinfo();} |
|
110 | +echo phpinfo(); } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | 48 => 1, |
58 | 58 | 70 => 1, |
59 | 59 | 71 => 1, |
60 | - ); |
|
60 | + ); |
|
61 | 61 | |
62 | 62 | }//end getErrorList() |
63 | 63 |
@@ -43,13 +43,13 @@ |
||
43 | 43 | public function getErrorList() |
44 | 44 | { |
45 | 45 | $errors = array( |
46 | - 2 => 3, |
|
47 | - 3 => 3, |
|
48 | - 4 => 1, |
|
49 | - 5 => 1, |
|
50 | - 9 => 1, |
|
51 | - 10 => 1, |
|
52 | - ); |
|
46 | + 2 => 3, |
|
47 | + 3 => 3, |
|
48 | + 4 => 1, |
|
49 | + 5 => 1, |
|
50 | + 9 => 1, |
|
51 | + 10 => 1, |
|
52 | + ); |
|
53 | 53 | |
54 | 54 | return $errors; |
55 | 55 |