hasProvider() public method

Tells if a provider can handle the given url.
public hasProvider ( string $url ) : boolean
$url string An url which may be extracted.
return boolean The url provider if any, otherwise null.
 /**
  *	Filters the given URLs to return only the extractable ones.
  *
  *	@param array $urls URLs to filter.
  *	@return array Filtered URLs.
  */
 protected function _filterUrls(array $urls)
 {
     $urls = array_filter($urls, function ($url) {
         return $this->_Collection->hasProvider($url);
     });
     return array_values($urls);
 }