renoki-co/php-k8s

View on GitHub
src/Contracts/Scalable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace RenokiCo\PhpK8s\Contracts;

interface Scalable
{
    /**
     * Get the path, prefixed by '/', that points to the resource scale.
     *
     * @return string
     */
    public function resourceScalePath(): string;
}