Locker\Repository\Statement\EloquentInserter::matchableStatement PHP Метод

matchableStatement() приватный Метод

Removes properties not necessary for matching.
private matchableStatement ( stdClass $statement ) : stdClass
$statement stdClass
Результат stdClass $statement
    private function matchableStatement(\stdClass $statement)
    {
        $statement = json_decode(json_encode($statement));
        unset($statement->stored);
        unset($statement->timestamp);
        unset($statement->authority);
        return $statement;
    }