@@ -27,6 +27,8 @@ class ConstraintToParamsDocTransformer
2727
2828 /**
2929 * @param DocTypeHelper $docTypeHelper
30+ * @param StringDocHelper $stringDocHelper
31+ * @param MinMaxHelper $minMaxHelper
3032 * @param ConstraintPayloadDocHelper $constraintPayloadDocHelper
3133 */
3234 public function __construct (
@@ -45,6 +47,8 @@ public function __construct(
4547 * @param Constraint $constraint
4648 *
4749 * @return TypeDoc
50+ *
51+ * @throws \ReflectionException
4852 */
4953 public function transform (Constraint $ constraint ) : TypeDoc
5054 {
@@ -55,6 +59,8 @@ public function transform(Constraint $constraint) : TypeDoc
5559 * @param Constraint[] $constraintList
5660 *
5761 * @return TypeDoc
62+ *
63+ * @throws \ReflectionException
5864 */
5965 public function transformList (array $ constraintList ) : TypeDoc
6066 {
@@ -68,8 +74,10 @@ public function transformList(array $constraintList) : TypeDoc
6874 }
6975
7076 /**
71- * @param TypeDoc $doc
72- * @param Constraint $constraint
77+ * @param TypeDoc $doc
78+ * @param Constraint $constraint
79+ *
80+ * @throws \ReflectionException
7381 */
7482 private function appendToDoc (TypeDoc $ doc , Constraint $ constraint ) : void
7583 {
@@ -127,8 +135,10 @@ private function appendToDoc(TypeDoc $doc, Constraint $constraint) : void
127135 }
128136
129137 /**
130- * @param TypeDoc $doc
138+ * @param TypeDoc $doc
131139 * @param Constraint $constraint
140+ *
141+ * @throws \ReflectionException
132142 */
133143 private function appendCollectionDoc (TypeDoc $ doc , Constraint $ constraint ) : void
134144 {
@@ -185,6 +195,8 @@ private function appendValidItemListDoc(TypeDoc $doc, Constraint $constraint) :
185195 /**
186196 * @param ArrayDoc $doc
187197 * @param Assert\All $constraint
198+ *
199+ * @throws \ReflectionException
188200 */
189201 private function appendAllConstraintToDoc (ArrayDoc $ doc , Assert \All $ constraint ) : void
190202 {
0 commit comments