ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
UsageManager.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Taxonomy\Usage;
22
24{
26
27 public function __construct(
29 ) {
30 $this->db_repo = $db_repo;
31 }
32
33 public function getUsageOfObject(int $obj_id, bool $include_titles = false): array
34 {
35 return $this->db_repo->getUsageOfObject($obj_id, $include_titles);
36 }
37}
getUsageOfObject(int $obj_id, bool $include_titles=false)
__construct(UsageDBRepository $db_repo)