|
@@ 313-315 (lines=3) @@
|
| 310 |
|
case 'mimes': |
| 311 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 312 |
|
break; |
| 313 |
|
case 'required_if': |
| 314 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 315 |
|
break; |
| 316 |
|
case 'required_unless': |
| 317 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 318 |
|
break; |
|
@@ 316-318 (lines=3) @@
|
| 313 |
|
case 'required_if': |
| 314 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 315 |
|
break; |
| 316 |
|
case 'required_unless': |
| 317 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->splitValuePairs($parameters))->getDescription(); |
| 318 |
|
break; |
| 319 |
|
case 'required_with': |
| 320 |
|
$attributeData['description'][] = Description::parse($rule)->with($this->fancyImplode($parameters, ', ', ' or '))->getDescription(); |
| 321 |
|
break; |