| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 59 | public function __construct( |
||
| 60 | $type, |
||
| 61 | $timestamp, |
||
| 62 | $achievement, |
||
| 63 | $featOfStrength, |
||
| 64 | $criteria, |
||
| 65 | $quantity, |
||
| 66 | $name |
||
| 67 | ) { |
||
| 68 | $this->type = $type; |
||
| 69 | $this->timestamp = $timestamp; |
||
| 70 | $this->achievement = $achievement; |
||
| 71 | $this->featOfStrength = $featOfStrength; |
||
| 72 | $this->criteria = $criteria; |
||
| 73 | $this->quantity = $quantity; |
||
| 74 | $this->name = $name; |
||
| 75 | } |
||
| 76 | |||
| 133 |