Skip to content

Commit b5628ca

Browse files
committed
feat: add php generator stub
1 parent 21a6b84 commit b5628ca

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/generators/php/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { Generator, GeneratorOptions } from '../interface.js';
2+
3+
export const phpGenerator: Generator = {
4+
async generate(_outputDir: string, _options: GeneratorOptions): Promise<void> {
5+
throw new Error('PHP generator is not yet implemented');
6+
},
7+
};

0 commit comments

Comments
 (0)