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 -1
View File
@@ -14,9 +14,11 @@
namespace Ramsey\Uuid\Exception;
use InvalidArgumentException;
/**
* Thrown to indicate that the parsed UUID string is invalid.
*/
class InvalidUuidStringException extends \InvalidArgumentException
class InvalidUuidStringException extends InvalidArgumentException
{
}