Skip to content

Commit 7622db1

Browse files
committed
Fix CS issues
1 parent 090ce9a commit 7622db1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Tree/Document/MongoDB/Repository/AbstractTreeRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ public function buildTree(array $nodes, array $options = [])
104104
}
105105

106106
/**
107-
* @see \Gedmo\Tree\RepositoryUtilsInterface::setChildrenIndex
107+
* @see RepositoryUtilsInterface::setChildrenIndex
108108
*/
109109
public function setChildrenIndex($childrenIndex)
110110
{
111111
$this->repoUtils->setChildrenIndex($childrenIndex);
112112
}
113113

114114
/**
115-
* @see \Gedmo\Tree\RepositoryUtilsInterface::getChildrenIndex
115+
* @see RepositoryUtilsInterface::getChildrenIndex
116116
*/
117117
public function getChildrenIndex()
118118
{

src/Tree/Entity/Repository/AbstractTreeRepository.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,39 +131,39 @@ public function childCount($node = null, $direct = false)
131131
}
132132

133133
/**
134-
* @see \Gedmo\Tree\RepositoryUtilsInterface::childrenHierarchy
134+
* @see RepositoryUtilsInterface::childrenHierarchy
135135
*/
136136
public function childrenHierarchy($node = null, $direct = false, array $options = [], $includeNode = false)
137137
{
138138
return $this->repoUtils->childrenHierarchy($node, $direct, $options, $includeNode);
139139
}
140140

141141
/**
142-
* @see \Gedmo\Tree\RepositoryUtilsInterface::buildTree
142+
* @see RepositoryUtilsInterface::buildTree
143143
*/
144144
public function buildTree(array $nodes, array $options = [])
145145
{
146146
return $this->repoUtils->buildTree($nodes, $options);
147147
}
148148

149149
/**
150-
* @see \Gedmo\Tree\RepositoryUtilsInterface::buildTreeArray
150+
* @see RepositoryUtilsInterface::buildTreeArray
151151
*/
152152
public function buildTreeArray(array $nodes)
153153
{
154154
return $this->repoUtils->buildTreeArray($nodes);
155155
}
156156

157157
/**
158-
* @see \Gedmo\Tree\RepositoryUtilsInterface::setChildrenIndex
158+
* @see RepositoryUtilsInterface::setChildrenIndex
159159
*/
160160
public function setChildrenIndex($childrenIndex)
161161
{
162162
$this->repoUtils->setChildrenIndex($childrenIndex);
163163
}
164164

165165
/**
166-
* @see \Gedmo\Tree\RepositoryUtilsInterface::getChildrenIndex
166+
* @see RepositoryUtilsInterface::getChildrenIndex
167167
*/
168168
public function getChildrenIndex()
169169
{

0 commit comments

Comments
 (0)