Skip to content

Commit

Permalink
Merge branch 'master' into php-56
Browse files Browse the repository at this point in the history
  • Loading branch information
glaubinix committed Mar 12, 2017
2 parents 5f0525b + 8b3e6c6 commit a54ca32
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Entity/QuestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ interface QuestInterface
public function setState($state);
public function getState();
public function getQuestId();
public function getUser();
public function getSlotId();
/**
* Method must return a map of taskId to progress
Expand Down
4 changes: 4 additions & 0 deletions tests/Mock/Entity/MockQuest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public function getQuestId()
{
return $this->questId;
}
public function getUser()
{
return $this->user;
}
public function getSlotId()
{
return $this->slotId;
Expand Down

0 comments on commit a54ca32

Please sign in to comment.