| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Limoncello\Flute\Validation\Rules; |
||
| 46 | public static function toManyRelationship(string $type, RuleInterface $rule = null): RuleInterface |
||
| 47 | { |
||
| 48 | $primary = new ToManyRelationshipTypeChecker($type); |
||
| 49 | |||
| 50 | return $rule === null ? $primary : new AndOperator($primary, $rule); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |