Clean up code according to PhpStorm inspections report

This commit is contained in:
Ben Ramsey
2019-11-30 13:13:55 -08:00
parent feb3eb50d1
commit 64ba9a2767
38 changed files with 270 additions and 203 deletions
+3 -3
View File
@@ -74,7 +74,7 @@ class StringCodec implements CodecInterface
*
* @param string $encodedUuid
* @return UuidInterface
* @throws \Ramsey\Uuid\Exception\InvalidUuidStringException
* @throws InvalidUuidStringException
*/
public function decode($encodedUuid)
{
@@ -89,7 +89,7 @@ class StringCodec implements CodecInterface
*
* @param string $bytes
* @return UuidInterface
* @throws \InvalidArgumentException if string has not 16 characters
* @throws InvalidArgumentException if string has not 16 characters
*/
public function decodeBytes($bytes)
{
@@ -117,7 +117,7 @@ class StringCodec implements CodecInterface
*
* @param string $encodedUuid
* @return array
* @throws \Ramsey\Uuid\Exception\InvalidUuidStringException
* @throws InvalidUuidStringException
*/
protected function extractComponents($encodedUuid)
{