Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Imangazaliev committed Feb 17, 2016
1 parent e774978 commit ae44c28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ $fixers = [
'remove_leading_slash_use',
'remove_lines_between_uses',
'return',
'self_accessor',
'short_tag',
'single_array_no_trailing_comma',
'single_blank_line_before_namespace',
Expand Down
4 changes: 2 additions & 2 deletions src/DiDom/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ public function load($string, $isFile = false, $type = 'html')
libxml_clear_errors();

libxml_disable_entity_loader(false);
libxml_use_internal_errors(false);
libxml_use_internal_errors(false);

return $this;
return $this;
}

/**
Expand Down
1 change: 0 additions & 1 deletion src/DiDom/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ public static function buildXpath($segments, $prefix = '//')
// if the attributes specified
if (isset($segments['attributes'])) {
foreach ($segments['attributes'] as $name => $value) {

$attributes[] = self::convertAttribute($name, $value);
}
}
Expand Down

0 comments on commit ae44c28

Please sign in to comment.