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