1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/codes/Getting started - Installation.php
2006-07-23 21:08:06 +00:00

14 lines
213 B
PHP

<?php
require_once("path-to-doctrine/Doctrine.class.php");
// autoloading objects
function __autoload($class) {
Doctrine::autoload($class);
}
// loading all components
Doctrine::loadAll();
?>