Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class RepositoryFactory
  2. {
  3. public function getRepository(string clazz)
  4. {
  5. ...
  6. }
  7. }
  8.  
  9. class RepositoryFactory
  10. {
  11. private function checkClassExistence(string clazz)
  12. {
  13. ...
  14. }
  15. }
  16.  
  17. class RepositoryFactory
  18. {
  19. protected function isValidRepositoryClazz(string clazz)
  20. {
  21. ...
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement