Forked from
project / coder
61 commits behind the upstream repository.
-
Klaus Purer authoredKlaus Purer authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
constant_test.module 144 B
<?php
define('WRONG_CONSTANT_NAME', 'test');
const ANOTHER_WRONG_NAME = 'test';
class Test {
const CLASS_CONSTANT = 'should be ignored';
}