Coding standards fix

This commit is contained in:
Ben Ramsey
2015-06-16 10:23:29 -05:00
parent 7fe43508a4
commit 2053cd3633
+4 -4
View File
@@ -9,11 +9,11 @@ class SystemNodeProvider implements NodeProviderInterface
public function getNode()
{
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();