<?php namespace App\Library\Cache; final class CacheKey { public static function build(string $scope, string $name): string { return "{$scope}:{$name}"; } }