1
0
Fork 0
mirror of synced 2025-04-12 05:30:55 +00:00
doctrine2/bin/doctrine.php

11 lines
No EOL
295 B
PHP

<?php
require_once 'Doctrine/Common/ClassLoader.php';
$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']);