onema/classyfile

View on GitHub
tests/mock/constants/class_with_constants.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class Foo
{
    const twenty = 'TWENTY';
    const TwentyOne = 'TWENTY_ONE';
    const twentyTwo = 'TWENTY_TWO';
    const TWENTY_THREE = 'TWENTY_THREE';
    const HTML  = 'HTML';
    const simpleXML  = 'SIMPLE_XML';
    const PDFLoad  = 'PDF_LOAD';
    const startMIDDLELast  = 'START_MIDDLE_LAST';
    const AString  = 'A_STRING';
    const Some4Numbers234  = 'SOME4_NUMBERS234';
    const TEST123String  = 'TEST123_STRING';
}