mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-14 23:49:02 +01:00
14 lines
230 B
Python
14 lines
230 B
Python
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
from scriptLanguageBuilder import ScriptLanguageBuilder
|
|
|
|
class PhpBuilder(ScriptLanguageBuilder):
|
|
|
|
def name(self):
|
|
return "PHP builder"
|
|
|
|
|
|
def relativePath(self):
|
|
return 'php'
|