Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
48 | 30 | public function fill($data) |
|
49 | { |
||
50 | 30 | foreach ($data as $key => $value) { |
|
51 | 30 | if (! property_exists($this, $key)) { |
|
52 | 1 | throw new InvalidPropertyException($key . ' is not a property on ' . get_class($this)); |
|
53 | } |
||
54 | |||
55 | 30 | $this->$key = $value; |
|
56 | } |
||
57 | |||
58 | 30 | return $this; |
|
59 | } |
||
60 | } |
||
61 |