8 lines
169 B
PHP
8 lines
169 B
PHP
|
<?php
|
||
|
|
||
|
require 'Doctrine/Common/ClassLoader.php';
|
||
|
|
||
|
$classLoader = new \Doctrine\Common\ClassLoader();
|
||
|
|
||
|
$cli = new \Doctrine\ORM\Tools\Cli();
|
||
|
$cli->run($_SERVER['argv']);
|