for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SP\Spiderling\Query;
use Symfony\Component\CssSelector\CssSelector;
/**
* @author Ivan Kerin <[email protected]>
* @copyright 2015, Clippings Ltd.
* @license http://spdx.org/licenses/BSD-3-Clause
*/
class Css extends AbstractQuery
{
* @return string
public function getXPath()
return CssSelector::toXPath($this->getSelector(), '//');
}