ElggCoreUnitTest::__construct PHP 메소드

__construct() 공개 메소드

A simple wrapper to call the parent constructor.
public __construct ( )
    public function __construct()
    {
        parent::__construct();
    }

Usage Example

예제 #1
0
파일: metastrings.php 프로젝트: rasul/Elgg
 /**
  * Called before each test object.
  */
 public function __construct()
 {
     parent::__construct();
     $this->metastrings = array();
     $this->object = new ElggObject();
     $this->object->save();
 }
All Usage Examples Of ElggCoreUnitTest::__construct