|
@@ 490-492 (lines=3) @@
|
| 487 |
|
case 'mimes': |
| 488 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 489 |
|
break; |
| 490 |
|
case 'required_if': |
| 491 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 492 |
|
break; |
| 493 |
|
case 'required_unless': |
| 494 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 495 |
|
break; |
|
@@ 493-495 (lines=3) @@
|
| 490 |
|
case 'required_if': |
| 491 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 492 |
|
break; |
| 493 |
|
case 'required_unless': |
| 494 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 495 |
|
break; |
| 496 |
|
case 'required_with': |
| 497 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 498 |
|
break; |