summaryrefslogtreecommitdiffstats
path: root/vendor/web-token/jwt-core/Converter/JsonConverter.php
blob: 64d3d356c86b1dd423423140561997a9af05f7af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

declare(strict_types=1);

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2018 Spomky-Labs
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */

namespace Jose\Component\Core\Converter;

/**
 * @deprecated This interface is deprecated in v1.3 and will be removed in v2.0.
 */
interface JsonConverter
{
    /**
     * Convert the payload into a string.
     */
    public function encode($payload): string;

    /**
     * Convert a string into payload.
     */
    public function decode(string $payload, bool $associativeArray = true);
}