Completed
Branch master (80a83d)
by Tim
19:22 queued 18:07
created
lib/TestCase/Cert/File.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -2,6 +2,9 @@
 block discarded – undo
2 2
 
3 3
 final class sspmod_monitor_TestCase_Cert_File extends sspmod_monitor_TestCase_Cert_Data
4 4
 {
5
+    /**
6
+     * @param sspmod_monitor_TestSuite_Configuration $testsuite
7
+     */
5 8
     public function __construct($testsuite, $input)
6 9
     {
7 10
         $input['certData'] = file_get_contents($input['certFile']);
Please login to merge, or discard this patch.
lib/TestSuite.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use sspmod_monitor_State as State;
4
-
5 3
 class sspmod_monitor_TestSuite extends sspmod_monitor_Test
6 4
 {
7 5
     private $monitor = null;
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
     private $monitor = null;
8 8
     private $tests = null;
9 9
 
10
+    /**
11
+     * @param sspmod_monitor_Monitor $monitor
12
+     */
10 13
     public function __construct($monitor, $input)
11 14
     {
12 15
         assert(is_a($monitor, 'sspmod_monitor_Monitor'));
Please login to merge, or discard this patch.
lib/Test.php 1 patch
Doc Comments   +17 added lines patch added patch discarded remove patch
@@ -22,6 +22,10 @@  discard block
 block discarded – undo
22 22
     /*
23 23
      * @return mixed
24 24
      */
25
+
26
+    /**
27
+     * @param string $item
28
+     */
25 29
     protected function getInput($item = null)
26 30
     {
27 31
         assert(is_string($item) || is_null($item));
@@ -32,6 +36,10 @@  discard block
 block discarded – undo
32 36
     /*
33 37
      * @return mixed
34 38
      */
39
+
40
+    /**
41
+     * @param string $item
42
+     */
35 43
     public function getOutput($item = null)
36 44
     {
37 45
         assert(is_string($item) || is_null($item));
@@ -77,6 +85,11 @@  discard block
 block discarded – undo
77 85
     /*
78 86
      * @return void
79 87
      */
88
+
89
+    /**
90
+     * @param string $category
91
+     * @param string $message
92
+     */
80 93
     protected function addMessage($state, $category, $subject, $message)
81 94
     {
82 95
         assert(is_int($state) && is_string($category) && is_string($subject) && is_string($message));
@@ -97,6 +110,10 @@  discard block
 block discarded – undo
97 110
     /*
98 111
      * @return void
99 112
      */
113
+
114
+    /**
115
+     * @param string $index
116
+     */
100 117
     protected function addOutput($value, $index = null)
101 118
     {
102 119
         if ($index === null) {
Please login to merge, or discard this patch.
lib/TestSuite/Metadata.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use sspmod_monitor_State as State;
4
-
5 3
 final class sspmod_monitor_TestSuite_Metadata extends sspmod_monitor_TestSuite
6 4
 {
7 5
     /*
Please login to merge, or discard this patch.
lib/TestSuite/Configuration.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use sspmod_monitor_State as State;
4
-
5 3
 final class sspmod_monitor_TestSuite_Configuration extends sspmod_monitor_TestSuite
6 4
 {
7 5
     /*
Please login to merge, or discard this patch.
lib/TestSuite/AuthSources.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use sspmod_monitor_State as State;
4
-
5 3
 final class sspmod_monitor_TestSuite_AuthSources extends sspmod_monitor_TestSuite
6 4
 {
7 5
     /*
Please login to merge, or discard this patch.
lib/TestSuite/AuthSource/Negotiate.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use sspmod_monitor_State as State;
4
-
5 3
 final class sspmod_monitor_TestSuite_AuthSource_Negotiate extends sspmod_monitor_TestSuite
6 4
 {
7 5
     private $authsourceData = null;
Please login to merge, or discard this patch.