From e05d626c633ee773dd0d4371c8bd650649315a35 Mon Sep 17 00:00:00 2001 From: Jitendra Adhikari Date: Sun, 22 Dec 2019 00:54:51 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- src/Validator.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Validator.php b/src/Validator.php index f387acf..add20a3 100644 --- a/src/Validator.php +++ b/src/Validator.php @@ -151,7 +151,7 @@ public function isValidWeekDay(string $value, array $time): bool } if (!\strpos($value, '#')) { - $this->unexpectedValue(4, $value);; + $this->unexpectedValue(4, $value); } list($day, $nth) = \explode('#', \str_replace('0#', '7#', $value)); @@ -164,8 +164,8 @@ public function isValidWeekDay(string $value, array $time): bool } /** - * @param int $pos - * @param string $value + * @param int $pos + * @param string $value * * @throws \UnexpectedValueException */