Example #1
0
<?php

// if we not on cli we will need to bootstra the orm
if (!is_cli()) {
    require_once 'Application.php';
    Application::webRun(['baseDir' => FCPATH]);
}
use Eddmash\PowerOrm\BaseOrm;
/**
 * This class makes the orm available to codeigniter since the orm uses namespaces.
 *
 * <h4>Version 1.0.1 Documentation</h4>
 *
 * visit {@link http://eddmash.github.io/powerorm/docs/v1_0_1}
 *
 * <h4>Version 1.1.0 Documentation</h4>
 *
 * visit {@link http://eddmash.github.io/powerorm/docs/v1_1_0}
 *
 * Class Orm.
 *
 * @since 1.0.0
 *
 * @author Eddilbert Macharia (http://eddmash.com) <*****@*****.**>
 */
class Orm extends BaseOrm
{
}