renoki-co/php-k8s

View on GitHub
src/Contracts/Attachable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace RenokiCo\PhpK8s\Contracts;

interface Attachable
{
    /**
     * Get the path, prefixed by '/', that points to the specific resource to attach.
     *
     * @return string
     */
    public function resourceAttachPath(): string;
}