repo.or.cz
/
phabricator
/
blender.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add a missing "GROUP BY" to MailQuery when querying for multiple recipients
[phabricator/blender.git]
/
src
/
view
/
AphrontAutoIDView.php
blob
22ccea96fda11521dd9fbe083599debdd332f659
1
<
?php
2
3
abstract class
AphrontAutoIDView
4
extends
AphrontView
{
5
6
private
$id
;
7
8
final public function
getID
() {
9
if
(!
$this
->
id
) {
10
$this
->
id
=
celerity_generate_unique_node_id
();
11
}
12
return
$this
->
id
;
13
}
14
15
}