Apply fixes from StyleCI

[ci skip] [skip ci]
This commit is contained in:
StyleCI Bot 2023-04-19 21:23:06 +00:00
parent 45dc6ff87b
commit ae5e2cffb3
No known key found for this signature in database
GPG key ID: E4A5316DFBB23575
6 changed files with 3 additions and 8 deletions

View file

@ -11,7 +11,6 @@ use Slim\Exception\HttpNotFoundException;
class PasswordRecoveryController extends AuthController
{
/**
* @param Response $response
* @return Response

View file

@ -13,7 +13,6 @@ use Slim\Exception\HttpNotFoundException;
class RegisterController extends AuthController
{
/**
* @param Request $request
* @param Response $response

View file

@ -12,7 +12,6 @@ use Slim\Exception\HttpNotFoundException;
class TagController extends Controller
{
/**
* @param Request $request
* @param Response $response

View file

@ -4,7 +4,6 @@ namespace App\Web;
class UA
{
/**
* bot user agent => perform link embed
* @var string[]

View file

@ -117,13 +117,13 @@ if (!function_exists('stringToBytes')) {
switch ($last) {
case 't':
$val *= 1024;
// no break
// no break
case 'g':
$val *= 1024;
// no break
// no break
case 'm':
$val *= 1024;
// no break
// no break
case 'k':
$val *= 1024;
}

View file

@ -7,7 +7,6 @@ use Tests\TestCase;
class LoginControllerTest extends TestCase
{
/** @test */
public function it_loads_the_login_page()
{