FluentDOM\Query\Css::count PHP Method

count() public method

Get the property count of the first selected node
See also: Countable::count()
public count ( ) : integer
return integer
    public function count()
    {
        if ($properties = $this->getStyleProperties()) {
            return count($properties);
        }
        return 0;
    }