Skip to content

Commit

Permalink
Merge pull request #529 from SergiX44/analysis-JG7k4o
Browse files Browse the repository at this point in the history
  • Loading branch information
sergix44 committed May 23, 2023
2 parents 7a4be04 + 5e6ba5a commit 3702753
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion app/Controllers/Auth/PasswordRecoveryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

class PasswordRecoveryController extends AuthController
{

/**
* @param Response $response
* @return Response
Expand Down
1 change: 0 additions & 1 deletion app/Controllers/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class RegisterController extends AuthController
{

/**
* @param Request $request
* @param Response $response
Expand Down
1 change: 0 additions & 1 deletion app/Controllers/TagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

class TagController extends Controller
{

/**
* @param Request $request
* @param Response $response
Expand Down
1 change: 0 additions & 1 deletion app/Web/UA.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

class UA
{

/**
* bot user agent => perform link embed
* @var string[]
Expand Down
6 changes: 3 additions & 3 deletions app/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ function stringToBytes(string $str): float
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;
}
Expand Down
1 change: 0 additions & 1 deletion tests/Feature/Auth/LoginControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

class LoginControllerTest extends TestCase
{

/** @test */
public function it_loads_the_login_page()
{
Expand Down

0 comments on commit 3702753

Please sign in to comment.