BstoreContainer.php 664 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer;
  3. class BstoreContainer
  4. {
  5. /**
  6. * BLIP Store Entries. Each of them holds one BLIP (Big Large Image or Picture).
  7. *
  8. * @var array
  9. */
  10. private $BSECollection = [];
  11. /**
  12. * Add a BLIP Store Entry.
  13. *
  14. * @param BstoreContainer\BSE $BSE
  15. */
  16. public function addBSE($BSE)
  17. {
  18. $this->BSECollection[] = $BSE;
  19. $BSE->setParent($this);
  20. }
  21. /**
  22. * Get the collection of BLIP Store Entries.
  23. *
  24. * @return BstoreContainer\BSE[]
  25. */
  26. public function getBSECollection()
  27. {
  28. return $this->BSECollection;
  29. }
  30. }