ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
StorageOnPathWrapper.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
string $key
Consumer key/client ID value.
Definition: System.php:193
__construct(string $path, Storage $other)