|
@@ 470-472 (lines=3) @@
|
| 467 |
|
case 'mimes': |
| 468 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 469 |
|
break; |
| 470 |
|
case 'required_if': |
| 471 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 472 |
|
break; |
| 473 |
|
case 'required_unless': |
| 474 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 475 |
|
break; |
|
@@ 473-475 (lines=3) @@
|
| 470 |
|
case 'required_if': |
| 471 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 472 |
|
break; |
| 473 |
|
case 'required_unless': |
| 474 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 475 |
|
break; |
| 476 |
|
case 'required_with': |
| 477 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 478 |
|
break; |