No se puede usar Visual Code para depurar en el proyecto Laravel

Tuve éxito en la configuración para depurar en PHP en VSCode.

Mi problema es que cuando ejecuto el proyecto siempre hay errores en la función:

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;
}

... desde el archivo:/srv/http/laravelproject/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php

No puedo depurar el punto de interrupción que me establecieron.

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

Respuestas a la pregunta(4)

Su respuesta a la pregunta