updated dependencies + working api connection

This commit is contained in:
Chris
2018-02-08 14:21:29 +00:00
parent dfc3c2194c
commit 30aea8e361
216 changed files with 21763 additions and 915 deletions

View File

@@ -23,9 +23,24 @@ namespace Symfony\Component\CssSelector\Node;
*/
interface NodeInterface
{
public function getNodeName(): string;
/**
* Returns node's name.
*
* @return string
*/
public function getNodeName();
public function getSpecificity(): Specificity;
/**
* Returns node's specificity.
*
* @return Specificity
*/
public function getSpecificity();
public function __toString(): string;
/**
* Returns node's string representation.
*
* @return string
*/
public function __toString();
}