Skip to content

Commit

Permalink
Fix CS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Nov 26, 2024
1 parent 090ce9a commit 7622db1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ public function buildTree(array $nodes, array $options = [])
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::setChildrenIndex
* @see RepositoryUtilsInterface::setChildrenIndex
*/
public function setChildrenIndex($childrenIndex)
{
$this->repoUtils->setChildrenIndex($childrenIndex);
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::getChildrenIndex
* @see RepositoryUtilsInterface::getChildrenIndex
*/
public function getChildrenIndex()
{
Expand Down
10 changes: 5 additions & 5 deletions src/Tree/Entity/Repository/AbstractTreeRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,39 +131,39 @@ public function childCount($node = null, $direct = false)
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::childrenHierarchy
* @see RepositoryUtilsInterface::childrenHierarchy
*/
public function childrenHierarchy($node = null, $direct = false, array $options = [], $includeNode = false)
{
return $this->repoUtils->childrenHierarchy($node, $direct, $options, $includeNode);
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::buildTree
* @see RepositoryUtilsInterface::buildTree
*/
public function buildTree(array $nodes, array $options = [])
{
return $this->repoUtils->buildTree($nodes, $options);
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::buildTreeArray
* @see RepositoryUtilsInterface::buildTreeArray
*/
public function buildTreeArray(array $nodes)
{
return $this->repoUtils->buildTreeArray($nodes);
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::setChildrenIndex
* @see RepositoryUtilsInterface::setChildrenIndex
*/
public function setChildrenIndex($childrenIndex)
{
$this->repoUtils->setChildrenIndex($childrenIndex);
}

/**
* @see \Gedmo\Tree\RepositoryUtilsInterface::getChildrenIndex
* @see RepositoryUtilsInterface::getChildrenIndex
*/
public function getChildrenIndex()
{
Expand Down

0 comments on commit 7622db1

Please sign in to comment.