Skip to content

Commit

Permalink
Remove strict warnings on php 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
wapmorgan committed Apr 20, 2017
1 parent adeb1e6 commit a71d30a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/GeneralDeclension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace morphos;

abstract class GeneralDeclension implements Cases {
abstract static public function isMutable($name);
abstract static public function getCases($name);
abstract static public function getCase($name, $case);
static public function isMutable($name) {}
static public function getCases($name) {}
static public function getCase($name, $case) {}
}
6 changes: 3 additions & 3 deletions src/NamesDeclension.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
namespace morphos;

abstract class NamesDeclension implements Cases, Gender {
abstract static public function isMutable($name, $gender);
abstract static public function getCases($name, $gender);
abstract static public function getCase($name, $case, $gender);
static public function isMutable($name, $gender) {}
static public function getCases($name, $gender) {}
static public function getCase($name, $case, $gender) {}
}

0 comments on commit a71d30a

Please sign in to comment.