Completed
Push — master ( 3888fe...7b95f2 )
by Carlos
02:54
created

src/Exceptions/AuthorizeFailedException.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Overtrue\Socialite\Exceptions;
4
5
class AuthorizeFailedException extends Exception
6
{
7
    public array $body;
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_ARRAY, expecting T_FUNCTION or T_CONST
Loading history...
8
9
    /**
10
     * @param string $message
11
     * @param array  $body
12
     */
13
    public function __construct($message, $body)
14
    {
15
        parent::__construct($message, -1);
16
17
        $this->body = $body;
18
    }
19
}
20