Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. // side effect: change ini settings
  3. ini_set('error_reporting', E_ALL);
  4.  
  5. // PHP 5.3 and later:
  6. namespace ProjeAdi\Model;
  7.  
  8. class Foo
  9. {
  10. }
  11.  
  12. // PHP 5.2.x and earlier:
  13. class ProjeAdi_Model_Foo
  14. {
  15. }
  16.  
  17. class Foo
  18. {
  19. const VERSION = '1.0';
  20. const DATE_APPROVED = '2012-06-01';
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement