예제 #1
0
파일: Data.php 프로젝트: yeaha/owl-orm
 public static function setMapper(string $mapper_class)
 {
     static::$mapper = $mapper_class;
 }
예제 #2
0
 /**
  * Sets the Mapper object for the Account object
  * @param Void\Mapper Mapper object for Account
  **/
 public static function setMapper($mapper)
 {
     static::$mapper = $mapper;
 }
예제 #3
0
 public static function setMapper(&$a)
 {
     static::$mapper = $a;
 }