From 43b9b537a136d7545bb989f7fb5120ccffec1c41 Mon Sep 17 00:00:00 2001 From: Jessica Mauerhan Date: Wed, 23 Mar 2016 09:05:37 -0400 Subject: [PATCH] file line endings, tried using phpcbf so I can run phpcs locally and not get crazy output --- tests/src/Generator/DefaultTimeGeneratorTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/src/Generator/DefaultTimeGeneratorTest.php b/tests/src/Generator/DefaultTimeGeneratorTest.php index cbc8d61..bf03cd6 100644 --- a/tests/src/Generator/DefaultTimeGeneratorTest.php +++ b/tests/src/Generator/DefaultTimeGeneratorTest.php @@ -145,7 +145,9 @@ class DefaultTimeGeneratorTest extends TestCase * $clockSeq = 4066; * $node = '122f80ca9e06'; * - * $values = [$low, $mid, sprintf('%04x', $timeHi), sprintf('%02x', $clockSeqHi), sprintf('%02x', $clockSeq & 0xff), $node]; + * $values = [$low, $mid, + * sprintf('%04x', $timeHi), sprintf('%02x', $clockSeqHi), + * sprintf('%02x', $clockSeq & 0xff), $node]; * * // then: * $hex = vsprintf('%08s%04s%04s%02s%02s%012s', $values);