Skip to content

Commit

Permalink
Merge pull request #99 from michaelward82/develop
Browse files Browse the repository at this point in the history
Corrects return value in docblock for 2 Model functions. Fixes GH#97
  • Loading branch information
treffynnon committed Sep 23, 2014
2 parents 8d94afe + 5613dd9 commit 9a7917f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paris.php
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ public function get($property) {
*
* @param string|array $property
* @param string|null $value
* @return void
* @return Model
*/
public function set($property, $value = null) {
$this->orm->set($property, $value);
Expand All @@ -547,7 +547,7 @@ public function set($property, $value = null) {
*
* @param string|array $property
* @param string|null $value
* @return void
* @return Model
*/
public function set_expr($property, $value = null) {
$this->orm->set_expr($property, $value);
Expand Down

0 comments on commit 9a7917f

Please sign in to comment.