Skip to content

Commit

Permalink
Apply PSR1 no_spaces_after_function_name php cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
shakaran committed Sep 17, 2017
1 parent fc276b4 commit 518a8a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/MenuItemModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public function addChild(MenuItemInterface $child)
public function removeChild(MenuItemInterface $child)
{
if (false !== ($key = array_search($child, $this->children))) {
unset ($this->children[$key]);
unset($this->children[$key]);
}

return $this;
Expand Down

0 comments on commit 518a8a8

Please sign in to comment.