Skip to content

Commit

Permalink
Fix object propertu dereferencing
Browse files Browse the repository at this point in the history
  • Loading branch information
borivojevic committed Mar 20, 2016
1 parent 7b8577b commit 36d0b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RescueTime/Activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function __construct($rowHeaders, $columns)

foreach ($columns as $key => $value) {
if (array_key_exists($key, $properties)) {
$this->$poperties[$key] = $value;
$this->$key = $value;
}
}
}
Expand Down

0 comments on commit 36d0b21

Please sign in to comment.