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