1
0
mirror of https://github.com/flarum/core.git synced 2025-08-07 08:56:38 +02:00

Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
luceos
2020-11-17 03:46:35 +00:00
committed by Matthew Kilgore
parent 4574fa6290
commit a155e41432
10 changed files with 44 additions and 26 deletions

View File

@@ -77,7 +77,7 @@ class ShowTest extends TestCase
$this->request('GET', '/api/discussions/1-fdsafdsajfsakf', [
'authenticatedAs' => 2,
])->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);

View File

@@ -57,7 +57,7 @@ class CreateTest extends TestCase
$this->assertEquals(422, $response->getStatusCode());
// The response body should contain details about the failed validation
$body = (string)$response->getBody();
$body = (string) $response->getBody();
$this->assertJson($body);
$this->assertEquals([
'errors' => [

View File

@@ -1,9 +1,14 @@
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Tests\integration\api\users;
use Flarum\Tests\integration\RetrievesAuthorizedUsers;
use Flarum\Tests\integration\TestCase;
@@ -55,7 +60,7 @@ class ShowTest extends TestCase
$this->request('GET', '/api/users/normal', [
'authenticatedAs' => 1,
])->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);
@@ -81,7 +86,7 @@ class ShowTest extends TestCase
{
$response = $this->send(
$this->request('GET', '/api/users/2')->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);
@@ -111,7 +116,7 @@ class ShowTest extends TestCase
$this->request('GET', '/api/users/normal', [
'authenticatedAs' => 2,
])->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);
@@ -141,7 +146,7 @@ class ShowTest extends TestCase
$this->request('GET', '/api/users/admin', [
'authenticatedAs' => 2,
])->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);
@@ -173,7 +178,7 @@ class ShowTest extends TestCase
$this->request('GET', '/api/users/admin', [
'authenticatedAs' => 2,
])->withQueryParams([
"bySlug" => true
'bySlug' => true
])
);