Nanigans\SingleTableInheritance\SingleTableInheritanceScope::isSingleTableInheritanceConstraint PHP Метод

isSingleTableInheritanceConstraint() защищенный Метод

Determine if the given where clause is a single table inheritance constraint.
protected isSingleTableInheritanceConstraint ( array $where, string $column ) : boolean
$where array
$column string
Результат boolean
    protected function isSingleTableInheritanceConstraint(array $where, $column)
    {
        return $where['type'] == 'In' && $where['column'] == $column;
    }