| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 14 | public function __construct(string $className, string $argumentName) |
||
| 15 | { |
||
| 16 | parent::__construct(sprintf( |
||
| 17 | 'Constructor argument "%s" of class %s cannot be mocked', |
||
| 18 | $argumentName, |
||
| 19 | $className |
||
| 20 | )); |
||
| 21 | |||
| 22 | $this->className = $className; |
||
| 23 | $this->argumentName = $argumentName; |
||
| 24 | } |
||
| 25 | |||
| 37 |