Não é possível usar o Visual Code para depurar no projeto Laravel

Eu tive sucesso na configuração para depurar no PHP no VSCode.

Meu problema é que quando eu executo o projeto, sempre há erros na função:

protected function getJsonPayload($payload)
{
    $payload = json_decode(base64_decode($payload), true);

    // If the payload is not valid JSON or does not have the proper keys set we will
    // assume it is invalid and bail out of the routine since we will not be able
    // to decrypt the given value. We'll also check the MAC for this encryption.
    if (! $this->validPayload($payload)) {
        throw new DecryptException('The payload is invalid.');
    }

    if (! $this->validMac($payload)) {
        throw new DecryptException('The MAC is invalid.');
    }

    return $payload;
}

... De arquivo:/srv/http/laravelproject/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php

Não consigo depurar no ponto de interrupção em que fui definido.

Registro de tela GIF:http://i.imgur.com/6pNkoHe.gif

questionAnswers(4)

yourAnswerToTheQuestion