Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Commit 406e0b3

Browse files
authored
Compatible with exceptions caused by think-helper.
1 parent 0ff167a commit 406e0b3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Adapter.php

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public function loadPolicy($model)
3636
$rows = $this->casbinRule->select()->toArray();
3737

3838
foreach ($rows as $row) {
39+
if(is_object($row) && method_exists($row, 'toArray')){
40+
$row= $row->toArray();
41+
}
42+
3943
$line = implode(', ', array_filter(array_slice($row, 1), function ($val) {
4044
return '' != $val && !is_null($val);
4145
}));

0 commit comments

Comments
 (0)