Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wapmorgan committed Feb 3, 2017
1 parent 8d4ba34 commit 9e15a41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/NumberCreation.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
namespace morphos;

class NumberCreation implements Cases {
public function getForms($name, $gender) {}
public function getForm($name, $form, $gender) {}
public function getForms($number) {}
public function getForm($number, $case) {}
}
2 changes: 1 addition & 1 deletion src/Russian/CardinalNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function getForms($number) {
}

public function getForm($number, $form) {
$forms = $this->getForms($name);
$forms = $this->getForms($number);
return $forms[$form];
}
}

0 comments on commit 9e15a41

Please sign in to comment.