|
@@ 523-525 (lines=3) @@
|
| 520 |
|
case 'mimes': |
| 521 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 522 |
|
break; |
| 523 |
|
case 'required_if': |
| 524 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 525 |
|
break; |
| 526 |
|
case 'required_unless': |
| 527 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 528 |
|
break; |
|
@@ 526-528 (lines=3) @@
|
| 523 |
|
case 'required_if': |
| 524 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 525 |
|
break; |
| 526 |
|
case 'required_unless': |
| 527 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 528 |
|
break; |
| 529 |
|
case 'required_with': |
| 530 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 531 |
|
break; |