Automated formatting changes

This commit is contained in:
Formatter Bot 2022-12-10 21:26:07 +00:00
parent 041d91e423
commit 5619596624
2 changed files with 8 additions and 8 deletions

View File

@ -30,10 +30,10 @@ final class QAAnswerVoteMapperTest extends \PHPUnit\Framework\TestCase
*/
public function testCRUD() : void
{
$vote = new QAAnswerVote();
$vote->answer = 1;
$vote->score = 1;
$vote->createdBy = new NullAccount(1);
$vote = new QAAnswerVote();
$vote->answer = 1;
$vote->score = 1;
$vote->createdBy = new NullAccount(1);
$vote->createdFor = 2;
$id = QAAnswerVoteMapper::create()->execute($vote);

View File

@ -30,10 +30,10 @@ final class QAQuestionVoteMapperTest extends \PHPUnit\Framework\TestCase
*/
public function testCRUD() : void
{
$vote = new QAQuestionVote();
$vote->question = 1;
$vote->score = 1;
$vote->createdBy = new NullAccount(1);
$vote = new QAQuestionVote();
$vote->question = 1;
$vote->score = 1;
$vote->createdBy = new NullAccount(1);
$vote->createdFor = 2;
$id = QAQuestionVoteMapper::create()->execute($vote);