ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
StorageOnPathWrapper.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Setup\Metrics;
22 
23 class StorageOnPathWrapper implements Storage
24 {
26 
27  protected string $path;
28  protected Storage $other;
29 
30  public function __construct(string $path, Storage $other)
31  {
32  $this->path = $path;
33  $this->other = $other;
34  }
35 
39  public function store(string $key, Metric $metric): void
40  {
41  $this->other->store("$this->path.$key", $metric);
42  }
43 }
trait StorageConvenience
Implements the convenience methods of Storage over Storage::store.
A metric is something we can measure about the system.
Definition: Metric.php:33
__construct(string $path, Storage $other)