ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CouldNotFindPageMetrics.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ilException;
24 
31 {
32  public static function by(int $contentPageId, int $pageId, string $language): self
33  {
34  return new self(sprintf(
35  'Could not find content page page metrics for page with page id %s and language %s for parent with id %s',
36  $contentPageId,
37  $pageId,
38  $language
39  ));
40  }
41 }
static by(int $contentPageId, int $pageId, string $language)