| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 8 | public function __construct( |
|
| 23 | DateTimeZone $timeZone, |
||
| 24 | ?int $maxNewsToFetch = null, |
||
| 25 | int $maxTextLengthChars = self::DEFAULT_MAX_TEXT_LENGTH_CHARS |
||
| 26 | ) { |
||
| 27 | 8 | $this->timeZone = $timeZone; |
|
| 28 | 8 | $this->maxNewsToFetch = $maxNewsToFetch; |
|
| 29 | 8 | $this->maxTextLengthChars = $maxTextLengthChars; |
|
| 30 | 8 | } |
|
| 62 |