for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace voku\helper;
/**
* Class SimpleHtmlDomNodeBlank
*
* @package voku\helper
* @property-read string outertext Get dom node's outer html
* @property-read string plaintext Get dom node's plain text
*/
class SimpleHtmlDomNodeBlank extends \ArrayObject implements SimpleHtmlDomNodeInterface
{
* @param $name
* @return string
public function __get($name)
$name
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return '';
}
* @param $arguments
public function __call($name, $arguments)
return null;
* @param string $selector
* @param int $idx
* @return SimpleHtmlDom|SimpleHtmlDomNode|null
public function __invoke($selector, $idx = null)
$selector
$idx
public function __toString()
* Get html of Elements
public function innerHtml()
* @param null $idx
* @return null
public function find($selector, $idx = null)
* Get plain text
public function text()
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.