1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/manual/codes/Coding standards - Naming Conventions - Constants.php
2006-10-01 13:58:19 +00:00

7 lines
120 B
PHP

<?php
class Doctrine_SomeClass {
const MY_CONSTANT = 'something';
}
print Doctrine_SomeClass::MY_CONSTANT;
?>