22 lines
367 B
PHP
22 lines
367 B
PHP
<?php
|
|
|
|
namespace App\Drivers\Concerns;
|
|
|
|
interface RendersCompose
|
|
{
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function composeService(): array;
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function composeVolumes(): array;
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
public function environmentExports(): array;
|
|
}
|