Skip to content

Commit

Permalink
feat: Upgrade phpDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
KminekMatej committed Sep 29, 2024
1 parent 61a7954 commit 7a798d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/module/autotest/manager/RecordManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ public function createDebt(?array $data = null, ?array $changes = null): array
return $this->createRecord(Debt::MODULE, $data ?: $this->mockDebt(), $changes);
}

/** @return array Created record */
/**
* Create discussion
* Default config: everyone can read/write, only admin can delete
*
* @return array Created discussion
*/
public function createDiscussion(?array $data = null, ?array $changes = null): array
{
return $this->createRecord(Discussion::MODULE, $data ?: $this->mockDiscussion(), $changes);
Expand Down

0 comments on commit 7a798d8

Please sign in to comment.