Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/metamta/storage/PhabricatorMetaMTASchemaSpec.php
12256 views
1
<?php
2
3
final class PhabricatorMetaMTASchemaSpec
4
extends PhabricatorConfigSchemaSpec {
5
6
public function buildSchemata() {
7
$this->buildEdgeSchemata(
8
new PhabricatorMetaMTAMail());
9
}
10
11
}
12
13