| Conditions | 1 |
| Paths | 1 |
| Total Lines | 29 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function dataProviderUndefinedPropertyException() : array |
||
| 17 | { |
||
| 18 | return [ |
||
| 19 | [ |
||
| 20 | ReadOnly::class, |
||
| 21 | [ |
||
| 22 | 'nope' => 'foo', |
||
| 23 | ], |
||
| 24 | true, |
||
| 25 | false, |
||
| 26 | 'nope', |
||
| 27 | ], |
||
| 28 | [ |
||
| 29 | WriteOnly::class, |
||
| 30 | [ |
||
| 31 | 'nope' => 'foo', |
||
| 32 | ], |
||
| 33 | false, |
||
| 34 | false, |
||
| 35 | 'nope', |
||
| 36 | ], |
||
| 37 | [ |
||
| 38 | NudgesIncorrectly::class, |
||
| 39 | [ |
||
| 40 | 'Foo' => 'bar', |
||
| 41 | ], |
||
| 42 | true, |
||
| 43 | true, |
||
| 44 | 'nope', |
||
| 45 | ], |
||
| 77 |