first commit

This commit is contained in:
2026-04-28 15:13:50 +02:00
commit a95acc355b
63745 changed files with 9487948 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?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;
}