Coding standards fix

This commit is contained in:
Ben Ramsey
2015-06-16 10:10:57 -05:00
parent 2034433d73
commit 91f746cdd8
+3 -3
View File
@@ -1164,11 +1164,11 @@ final class Uuid
protected static function getNodeFromSystem()
{
static $node = null;
if($node !== null) {
if ($node !== null) {
return $node;
}
$pattern = '/[^:]([0-9A-Fa-f]{2}([:-])[0-9A-Fa-f]{2}(\2[0-9A-Fa-f]{2}){4})[^:]/';
$matches = array();