1: <?php
2:
3: namespace webfilesframework\codegeneration;
4:
5: /**
6: * description
7: *
8: * @author Sebastian Monzel < mail@sebastianmonzel.de >
9: * @since 0.1.7
10: */
11: abstract class MProgrammingLanguage
12: {
13:
14: const PHP = "PHP";
15: const JAVA = "JAVA";
16:
17: }
18: