1 <?php declare(strict_types=1);
36 if ($this->identification->serialize() !== $revision->
getIdentification()->serialize()) {
39 foreach ($this->revisions as $r) {
46 asort($this->revisions);
49 public function remove(
Revision $revision) :
void 51 foreach ($this->revisions as $k => $revision_e) {
52 if ($revision->getVersionNumber() === $revision_e->getVersionNumber()) {
53 unset($this->revisions[$k]);
62 foreach ($this->revisions as $k => $revision_e) {
64 $this->revisions[$k] = $revision;
71 $this->revisions = [];
72 $this->
add($revision);
77 $v = array_values($this->revisions);
97 if (count($this->revisions) === 0) {
100 return max(array_keys($this->revisions));
replaceAllRevisions(Revision $revision)
replaceSingleRevision(Revision $revision)
__construct(ResourceIdentification $identification, array $revisions=[])
RevisionCollection constructor.
Class RevisionCollection.
Interface Identification.