Skip to content

Commit 1f1a419

Browse files
Fix missing OutOfRangeException
1 parent cc85460 commit 1f1a419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Models/ForeignRelationship.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function isSingleRelation()
123123
public function setType($type)
124124
{
125125
if (!self::isValidType($type)) {
126-
throw new OutOfRangeException();
126+
throw new \OutOfRangeException();
127127
}
128128

129129
$this->type = $type;

0 commit comments

Comments
 (0)