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

7 lines
120 B
PHP
Raw Normal View History

2006-10-01 17:58:19 +04:00
<?php
class Doctrine_SomeClass {
const MY_CONSTANT = 'something';
}
print Doctrine_SomeClass::MY_CONSTANT;
?>