Guest User

Untitled

a guest
Jan 22nd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Folder structure:
  2. /
  3. /src/
  4. /src/PCL/
  5. /src/PCL/Test/
  6. /src/PCL/Test/MyClass.php
  7. /src/index.php
  8. --------------------------------------------------------------
  9. index.php
  10. <?php
  11. use PCL\Test;
  12.  
  13. $test = new MyClass();
  14. ?>
  15.  
  16. MyClass.php
  17. <?php
  18. namespace PCL\Test;
  19. class MyClass
  20. {
  21. public function __construct()
  22. {
  23. print 'Welcome to MyClass!';
  24. }
  25. }
  26.  
  27. ?>
Add Comment
Please, Sign In to add comment