Skip to content

Commit 3dd9fab

Browse files
committed
fixed entity reference internal type
1 parent b90ebf3 commit 3dd9fab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Plugins/DocBlock.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ private function getTarantoolType(string $type)
141141
return $this->tarantoolTypes[$type];
142142
}
143143

144+
if($type[0] == '\\') {
145+
return $this->tarantoolTypes[$type] = 'unsigned';
146+
}
147+
144148
switch($type) {
145149
case 'int':
146150
return $this->tarantoolTypes[$type] = 'unsigned';

0 commit comments

Comments
 (0)