1
0
mirror of synced 2025-02-22 23:23:14 +03:00
doctrine2/bin/doctrine.php

11 lines
295 B
PHP
Raw Normal View History

<?php
require_once 'Doctrine/Common/ClassLoader.php';
2009-12-21 11:06:27 +00:00
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine');
$classLoader->register();
$configuration = new \Doctrine\Common\Cli\Configuration();
$cli = new \Doctrine\Common\Cli\CliController($configuration);
$cli->run($_SERVER['argv']);