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