예제 #1
0
파일: index.php 프로젝트: xymanek/gom
<?php

require_once "vendor/autoload.php";
GOM::set("Arr", new ArrayObject());
GOM::Error(new Exception());
var_dump(GOM::Arr(), GOM::repo());
예제 #2
0
파일: GOM.php 프로젝트: xymanek/gom
 /**
  * Initializes repository
  */
 protected static function init()
 {
     self::$repo = new Repo();
 }