Fix static analysis issues with tests

This commit is contained in:
Ben Ramsey
2020-01-08 17:38:36 -06:00
parent 8e79ff851a
commit 3e81dad348
2 changed files with 111 additions and 70 deletions
+1 -1
View File
@@ -126,6 +126,6 @@ class DefaultTimeGenerator implements TimeGeneratorInterface
throw new InvalidArgumentException('Invalid node value');
}
return strtolower(sprintf('%012s', $node));
return strtolower(sprintf('%012s', (string) $node));
}
}