Skip to content

Commit

Permalink
Fix Enums
Browse files Browse the repository at this point in the history
  • Loading branch information
bgsrb committed Nov 28, 2016
1 parent 9312437 commit 9a794ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Enums/ApiLogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

namespace Kavenegar\Enums;

final class ApiLogs extends General {
abstract class ApiLogs extends General {
const Justforfault = "justforfault";
const Enabled = "enabled";
const Disabled = "disabled";
}

?>
3 changes: 1 addition & 2 deletions src/Enums/General.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

namespace Kavenegar\Enums;

final class General {
abstract class General {
const Enabled = "enabled";
const Disabled = "disabled";
}
?>

0 comments on commit 9a794ee

Please sign in to comment.