for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\EmbedVideo\Parsers;
/**
* Class VimeoParser
*
* @package Arcanedev\EmbedVideo\Parsers
* @author ARCANEDEV <[email protected]>
*/
class VimeoParser extends AbstractParser
{
/* -----------------------------------------------------------------
| Getters & Setters
| -----------------------------------------------------------------
* Get the video id from cached matches.
* @return mixed
protected function videoId()
// TODO: Implement videoId() method.
}
* Get the default URL queries.
* @return array
protected function defaultQueries()
// TODO: Implement defaultQueries() method.
* Get the iframe pattern.
* @return string
protected function getIframePattern()
// TODO: Implement getIframePattern() method.
* Get the iframe replace.
protected function getIframeReplacer()
// TODO: Implement getIframeReplacer() method.