From 72d7415d087281ac21ff4a66ddb505f43ea06d6f Mon Sep 17 00:00:00 2001 From: peter279k Date: Tue, 11 Jan 2022 11:11:55 +0800 Subject: [PATCH] Remove duplicated semicolon --- src/MemoryLimit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MemoryLimit.php b/src/MemoryLimit.php index e51e8b8..6cd5a99 100644 --- a/src/MemoryLimit.php +++ b/src/MemoryLimit.php @@ -40,7 +40,7 @@ public static function set(?Size $size, bool $asString = false): void ini_set(self::INI_OPTION, $size->getBytes()); return; } - ini_set(self::INI_OPTION, self::toPHPShortHand($size));; + ini_set(self::INI_OPTION, self::toPHPShortHand($size)); } private static function toPHPShortHand(Size $size): string