Apply fixes from StyleCI
[ci skip] [skip ci]
This commit is contained in:
parent
45dc6ff87b
commit
ae5e2cffb3
6 changed files with 3 additions and 8 deletions
|
@ -11,7 +11,6 @@ use Slim\Exception\HttpNotFoundException;
|
|||
|
||||
class PasswordRecoveryController extends AuthController
|
||||
{
|
||||
|
||||
/**
|
||||
* @param Response $response
|
||||
* @return Response
|
||||
|
|
|
@ -13,7 +13,6 @@ use Slim\Exception\HttpNotFoundException;
|
|||
|
||||
class RegisterController extends AuthController
|
||||
{
|
||||
|
||||
/**
|
||||
* @param Request $request
|
||||
* @param Response $response
|
||||
|
|
|
@ -12,7 +12,6 @@ use Slim\Exception\HttpNotFoundException;
|
|||
|
||||
class TagController extends Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* @param Request $request
|
||||
* @param Response $response
|
||||
|
|
|
@ -4,7 +4,6 @@ namespace App\Web;
|
|||
|
||||
class UA
|
||||
{
|
||||
|
||||
/**
|
||||
* bot user agent => perform link embed
|
||||
* @var string[]
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,6 @@ use Tests\TestCase;
|
|||
|
||||
class LoginControllerTest extends TestCase
|
||||
{
|
||||
|
||||
/** @test */
|
||||
public function it_loads_the_login_page()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue