# code-snippets/3.9.1/php/flat-files/interfaces/interface-config-repository.php

Code Snippets, version 3.9.1. 10 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.9.1/code/php/flat-files/interfaces/interface-config-repository.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.9.1/raw/php/flat-files/interfaces/interface-config-repository.php
- Modified: 2025-10-16T19:08:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.9.1/code/php/flat-files/interfaces/interface-config-repository.php#L10-L20`.

```php
<?php

namespace Code_Snippets;

interface Snippet_Config_Repository_Interface {
	public function load( string $base_dir ): array;
	public function save( string $base_dir, array $active_snippets ): void;
	public function update( string $base_dir, Snippet $snippet, ?bool $remove = false ): void;
}

```
