From 42ee11a539679ce88c99f09cb78430a504dc7eac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 30 Dec 2017 19:51:54 +0100 Subject: [PATCH] Fix: Remove unused private method --- tests/Constraints/LongArraysTest.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/Constraints/LongArraysTest.php b/tests/Constraints/LongArraysTest.php index 2757b964..c60fd3c7 100644 --- a/tests/Constraints/LongArraysTest.php +++ b/tests/Constraints/LongArraysTest.php @@ -100,11 +100,4 @@ public function testLongIntegerArray() $validator->check($checkValue, $schema); $this->assertTrue($validator->isValid(), print_r($validator->getErrors(), true)); } - - private static function millis() - { - $mt = explode(' ', microtime()); - - return $mt[1] * 1000 + round($mt[0] * 1000); - } }