コード例 #1
0
ファイル: Real.php プロジェクト: exakat/exakat
 public function __construct($gremlin)
 {
     $this->type = 'Real';
     parent::__construct($gremlin);
 }
コード例 #2
0
ファイル: Integer.php プロジェクト: exakat/exakat
 public function __construct($gremlin)
 {
     $this->type = 'Integer';
     parent::__construct($gremlin);
 }
コード例 #3
0
ファイル: BooleanValue.php プロジェクト: exakat/exakat
 public function __construct($gremlin)
 {
     $this->type = 'Boolean';
     parent::__construct($gremlin);
 }