예제 #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
 public function __construct($gremlin)
 {
     $this->type = 'Boolean';
     parent::__construct($gremlin);
 }