ILIAS  trunk Revision v11.0_alpha-1753-gb21ca8c4367
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DomainService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
29  protected Archives $archives;
30 
31  public function __construct(
32  Archives $archives,
33  LegacyArchives $legacy_archives
34  ) {
35  $this->archives = $archives;
36  $this->legacy_archives = $legacy_archives;
37  }
38 
39  public function zip(): ZipAdapter
40  {
41  return new ZipAdapter(
42  $this->archives,
43  $this->legacy_archives
44  );
45  }
46 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Archives $archives, LegacyArchives $legacy_archives)