Revert "Remove call to undefined method DoorkeeperDAO::getObjectKey()"
Summary:
This reverts commit a039c4952f6b13f380e2df3a8989c856c87bb952.
This doesn't do what it is supposed to and probably causes bad things to happen. See more details at T15894#29636
Test Plan:
In a PHP interactive shell:
- (Run `require_once 'scripts/init/__init_script__.php'` and ignore the output buffering error to get into an environment where Phorge classes can load)
- Run `$x = new DoorkeeperExternalObject()`
- Evaluate `$x->getObjectKey()`
- See some meaningless string of characters.
- Run `$x->setObjectKey('foo');`
- Evaluate `$x->getObjectKey()`
- With this patch, see `foo`. Without this patch see the same meaningless string of characters you saw above.
Beyond that extremely-low-level test, unclear.
Reviewers: O1 Blessed Committers, aklapper
Reviewed By: O1 Blessed Committers, aklapper
Subscribers: aklapper, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno
Differential Revision: https://we.phorge.it/D26656