Storm\Drivers\Base\Object\Properties\CollectionProperty::ComputeIdentityDifference PHP Метод

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

private ComputeIdentityDifference ( Domain $Domain, array $Objects, array $OtherObjects )
$Domain Storm\Core\Object\Domain
$Objects array
$OtherObjects array
    private function ComputeIdentityDifference(Object\Domain $Domain, array $Objects, array $OtherObjects)
    {
        $this->IndexEntitiesByIdentity($Domain, $Objects);
        $this->IndexEntitiesByIdentity($Domain, $OtherObjects);
        return array_diff_key($Objects, $OtherObjects);
    }