blob: 77abbbcf5efda863ba2c8b67500e9c7640c3dfad [file] [log] [blame]
<?php
namespace LdapRecord\Models\ActiveDirectory;
class ExchangeDatabase extends Entry
{
/**
* @inheritdoc
*/
public static $objectClasses = ['msExchMDB'];
/**
* @inheritdoc
*/
public static function boot()
{
parent::boot();
static::addGlobalScope(new Scopes\InConfigurationContext());
}
}