Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /**
  2. * ElasticSearch Library
  3. *
  4. * Intended to do some cool stuff
  5. *
  6. *
  7. * @author cmvr
  8. * @subpackage elasticSearch
  9. * @copyright free to use
  10. * @license http://www.gnu.org/copyleft/gpl.html Freely available under GPL
  11. */
  12.  
  13. namespace Libs;
  14.  
  15. /**
  16. * This is the main class of elastic search
  17. */
  18.  
  19. class elasticSearch {
  20.  
  21. protected $dataConnection;
  22.  
  23. /**
  24. * elastic search setup data connection
  25. * @return boolean
  26. */
  27. public function setupDataConnection($dataString) {
  28. return true;
  29. }
  30.  
  31.  
  32. }
  33.  
  34. phpdoc -f ../../app/libraries/elasticSearch.php -t ../../newDocs
  35.  
  36. newDocs/files/elasticSearch.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement