PageRenderTime 36ms CodeModel.GetById 10ms RepoModel.GetById 0ms app.codeStats 0ms

/src/Spider/Filter/Empty.php

https://github.com/saltybeagle/Spider
PHP | 14 lines | 12 code | 2 blank | 0 comment | 1 complexity | 8ce8988f1696d8a382ce850d307e274c MD5 | raw file
  1. <?php
  2. class Spider_Filter_Empty extends Spider_UriFilterInterface
  3. {
  4. public function accept()
  5. {
  6. $uri = $this->current();
  7. if (empty($uri)) {
  8. return false;
  9. }
  10. return true;
  11. }
  12. }