diff options
author | Scott <scott@paragonie.com> | 2017-04-20 15:25:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-20 15:25:45 -0400 |
commit | 34838b89a29c0965d3ef790105f11d151951a87b (patch) | |
tree | 795c7778d228edcc4fc50e489cf8893f2ddc9799 /src | |
parent | aa342bff0f39b72da79b62b72d95a9bb86aa80b9 (diff) | |
parent | 7d789e24489684a1b052b23801588b9c1adc3782 (diff) | |
download | constant_time_encoding-34838b89a29c0965d3ef790105f11d151951a87b.zip constant_time_encoding-34838b89a29c0965d3ef790105f11d151951a87b.tar.gz constant_time_encoding-34838b89a29c0965d3ef790105f11d151951a87b.tar.bz2 |
Merge pull request #7 from fkooman/fix-6-master
fix Base64::decode method documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/Base64.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Base64.php b/src/Base64.php index c29c080..b263d75 100644 --- a/src/Base64.php +++ b/src/Base64.php @@ -84,7 +84,7 @@ abstract class Base64 implements EncoderInterface * * @param string $src * @param bool $strictPadding - * @return string|bool + * @return string * @throws \RangeException */ public static function decode(string $src, bool $strictPadding = false): string |