| 1 | <?php namespace Limoncello\Flute\Validation\Rules; |
||
| 25 | trait RelationshipsTrait |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @param string $type |
||
| 29 | * @param RuleInterface|null $rule |
||
| 30 | * |
||
| 31 | * @return RuleInterface |
||
| 32 | */ |
||
| 33 | public static function toOneRelationship(string $type, RuleInterface $rule = null): RuleInterface |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $type |
||
| 42 | * @param RuleInterface|null $rule |
||
| 43 | * |
||
| 44 | * @return RuleInterface |
||
| 45 | */ |
||
| 46 | public static function toManyRelationship(string $type, RuleInterface $rule = null): RuleInterface |
||
| 52 | } |
||
| 53 |