Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. class FileReader {
  5.  
  6. public function openFile($filePath, $fileMode) {
  7. //... open file
  8. }
  9.  
  10. public function readFile($filePath) {
  11. $this->openFile($filePath, self::READ_ONLY)
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement