Skip to content

Commit

Permalink
NpcController: Fix annotations that did not get altered
Browse files Browse the repository at this point in the history
when method was altered.
  • Loading branch information
tchalvak committed Dec 29, 2017
1 parent 3934923 commit e8c23f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/lib/control/NpcController.php
Expand Up @@ -261,7 +261,7 @@ private function startRandomEncounter() {
* Attack a specific npc
*
* @param Container
* @return Response
* @return StreamedViewResponse
*/
public function attack(Container $p_dependencies) {
$request = RequestWrapper::$request;
Expand Down
7 changes: 3 additions & 4 deletions deploy/lib/data/Player.php
Expand Up @@ -798,11 +798,10 @@ public static function validStatus($dirty) {
}

/**
* Returns a comma-seperated string of states based on the statuses of the target.
* Get the different statuses a character is affected by.
*
* @param array $statuses status array
* @param string $target the target, username if self targetting.
* @return string
* @param int|null $target the target id, username if self targetting.
* @return String[]
*
*/
public static function getStatusList($target=null) {
Expand Down

0 comments on commit e8c23f0

Please sign in to comment.