Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/aphront/writeguard/AphrontScopedUnguardedWriteCapability.php
12241 views
1
<?php
2
3
final class AphrontScopedUnguardedWriteCapability extends Phobject {
4
5
public function __destruct() {
6
AphrontWriteGuard::endUnguardedWrites();
7
}
8
9
}
10
11