Completed
Push — 1.x ( fbb429 )
by Jakub
06:33
created

TestJobsRunner   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 21
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A test() 0 3 1
A testTwo() 0 3 1
1
<?php
0 ignored issues
show
introduced by
Missing required strict_types declaration
Loading history...
2
namespace MyTester;
3
4
/**
5
 * Tests for class Runner
6
 *
7
 * @author Jakub Konečný
8
 * @deprecated since version 1.0
9
 */
10
class TestJobsRunner {
11
  /**
12
   * Test for Environment::testResult()
13
   *
14
   * @return void
15
   * @deprecated since version 1.0
16
   */
17
  public function test() {
18
    Environment::testResult("Test", false);
19
  }
20
  
21
  /**
22
   * Test for Environment::testResult()
23
   *
24
   * @return void
25
   * @deprecated since version 1.0
26
   */
27
  public function testTwo() {
28
    Environment::testResult("Test");
29
  }
30
}
31
?>