Skip to content

Commit 129e30e

Browse files
committed
Fix cs
1 parent 69a2759 commit 129e30e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/IntervalTree.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public function isEmpty(): bool
4545

4646
/**
4747
* Find nodes which intervals intersect with given interval
48+
*
4849
* @param IntervalInterface $interval
4950
* @return Iterator<Pair>
5051
*/
@@ -101,6 +102,7 @@ public function insert(IntervalInterface $interval, $value = null): void
101102

102103
/**
103104
* Returns true if interval and value exist in the tree
105+
*
104106
* @param IntervalInterface $interval
105107
* @param mixed $value
106108
* @return bool
@@ -112,6 +114,8 @@ public function exist(IntervalInterface $interval, $value): bool
112114
}
113115

114116
/**
117+
* Remove node from tree by interval and value
118+
*
115119
* @param IntervalInterface $interval
116120
* @param mixed $value
117121
* @return bool

0 commit comments

Comments
 (0)