public function EasyRdf_Literal_Integer::__construct

Constructor for creating a new integer literal

Parameters

mixed $value The value of the literal:

string $lang Should be null (literals with a datatype can't have a language):

string $datatype Optional datatype (default 'xsd:integer'):

Return value

object EasyRdf_Literal_Integer

Overrides EasyRdf_Literal::__construct

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Integer.php, line 56

Class

EasyRdf_Literal_Integer
Class that represents an RDF Literal of datatype xsd:integer

Code

public function __construct($value, $lang = null, $datatype = null) {
  parent::__construct($value, null, $datatype);
}