| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 30 | public function __construct(array $input) |
|
| 25 | { |
||
| 26 | 30 | $this->searchRecursively = (bool)$input['recursive']; |
|
| 27 | 30 | $this->extractAssociations = (bool)$input['associations']; |
|
| 28 | 30 | $this->hidePrivate = (bool)$input['hide-private']; |
|
| 29 | 30 | $this->hideProtected = (bool)$input['hide-protected']; |
|
| 30 | 30 | } |
|
| 52 |