sebastianmonzel/webfiles-framework-php

View on GitHub
source/codegeneration/MProgrammingLanguage.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace webfilesframework\codegeneration;

/**
 * description
 *
 * @author     Sebastian Monzel < mail@sebastianmonzel.de >
 * @since      0.1.7
 */
abstract class MProgrammingLanguage
{

    const PHP = "PHP";
    const JAVA = "JAVA";

}