Skip to content

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Dec 11, 2018
1 parent 697665c commit a93cab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions spec/drupol/phptree/Visitor/PostOrderVisitorSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
use drupol\phptree\Node\NaryNode;
use drupol\phptree\Node\Node;
use drupol\phptree\Node\ValueNode;
use drupol\phptree\Render\GraphViz;
use drupol\phptree\Visitor\BreadthFirstVisitor;
use drupol\phptree\Visitor\PostOrderVisitor;
use Fhaculty\Graph\Graph;
use PhpSpec\ObjectBehavior;

class PostOrderVisitorSpec extends ObjectBehavior
Expand Down Expand Up @@ -51,7 +48,7 @@ public function it_can_traverse_a_tree_with_a_specific_level()
$nodes[$value] = new ValueNode($value);
}

$tree->add(...array_values($nodes));
$tree->add(...\array_values($nodes));

$nodes['root'] = $tree;

Expand Down
2 changes: 1 addition & 1 deletion spec/drupol/phptree/Visitor/PreOrderVisitorSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function it_can_traverse_a_tree_with_a_specific_level()
$nodes[$value] = new ValueNode($value);
}

$tree->add(...array_values($nodes));
$tree->add(...\array_values($nodes));

$nodes['root'] = $tree;

Expand Down

0 comments on commit a93cab3

Please sign in to comment.