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

src/Exceptions/InvalidTokenException.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 InvalidTokenException extends Exception
6
{
7
    public string $token;
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

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