Skip to content

Commit ae44c28

Browse files
committed
CS fix
1 parent e774978 commit ae44c28

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.php_cs

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ $fixers = [
5454
'remove_leading_slash_use',
5555
'remove_lines_between_uses',
5656
'return',
57-
'self_accessor',
5857
'short_tag',
5958
'single_array_no_trailing_comma',
6059
'single_blank_line_before_namespace',

src/DiDom/Document.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ public function load($string, $isFile = false, $type = 'html')
126126
libxml_clear_errors();
127127

128128
libxml_disable_entity_loader(false);
129-
libxml_use_internal_errors(false);
129+
libxml_use_internal_errors(false);
130130

131-
return $this;
131+
return $this;
132132
}
133133

134134
/**

src/DiDom/Query.php

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ public static function buildXpath($segments, $prefix = '//')
109109
// if the attributes specified
110110
if (isset($segments['attributes'])) {
111111
foreach ($segments['attributes'] as $name => $value) {
112-
113112
$attributes[] = self::convertAttribute($name, $value);
114113
}
115114
}

0 commit comments

Comments
 (0)