diff options
Diffstat (limited to 'vendor/web-token/jwt-core/Converter/JsonConverter.php')
-rw-r--r-- | vendor/web-token/jwt-core/Converter/JsonConverter.php | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/vendor/web-token/jwt-core/Converter/JsonConverter.php b/vendor/web-token/jwt-core/Converter/JsonConverter.php index 97fe176..64d3d35 100644 --- a/vendor/web-token/jwt-core/Converter/JsonConverter.php +++ b/vendor/web-token/jwt-core/Converter/JsonConverter.php @@ -1,30 +1,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); -} +<?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);
+}
|