1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the Doctrine Bundle |
5
|
|
|
* |
6
|
|
|
* The code was originally distributed inside the Symfony framework. |
7
|
|
|
* |
8
|
|
|
* (c) Fabien Potencier <[email protected]> |
9
|
|
|
* (c) Doctrine Project, Benjamin Eberlei <[email protected]> |
10
|
|
|
* |
11
|
|
|
* For the full copyright and license information, please view the LICENSE |
12
|
|
|
* file that was distributed with this source code. |
13
|
|
|
*/ |
14
|
|
|
|
15
|
|
|
namespace Saxulum\DoctrineOrmCommands\Command; |
16
|
|
|
|
17
|
|
|
use Symfony\Component\Console\Command\Command; |
18
|
|
|
use Doctrine\ORM\Tools\EntityGenerator; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* Base class for Doctrine console commands to extend from. |
22
|
|
|
* |
23
|
|
|
* @author Fabien Potencier <[email protected]> |
24
|
|
|
*/ |
25
|
|
|
abstract class DoctrineCommand extends Command |
26
|
|
|
{ |
27
|
|
|
/** |
28
|
|
|
* get a doctrine entity generator |
29
|
|
|
* |
30
|
|
|
* @return EntityGenerator |
31
|
|
|
*/ |
32
|
|
|
protected function getEntityGenerator() |
33
|
|
|
{ |
34
|
|
|
$entityGenerator = new EntityGenerator(); |
35
|
|
|
$entityGenerator->setGenerateAnnotations(false); |
36
|
|
|
$entityGenerator->setGenerateStubMethods(true); |
37
|
|
|
$entityGenerator->setRegenerateEntityIfExists(false); |
38
|
|
|
$entityGenerator->setUpdateEntityIfExists(true); |
39
|
|
|
$entityGenerator->setNumSpaces(4); |
40
|
|
|
$entityGenerator->setAnnotationPrefix('ORM\\'); |
41
|
|
|
|
42
|
|
|
return $entityGenerator; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Get a doctrine entity manager by symfony name. |
47
|
|
|
* |
48
|
|
|
* @param string $name |
49
|
|
|
* |
50
|
|
|
* @return \Doctrine\ORM\EntityManager |
51
|
|
|
*/ |
52
|
|
|
protected function getEntityManager($name) |
53
|
|
|
{ |
54
|
|
|
$helperSet = $this->getHelperSet(); |
55
|
|
|
|
56
|
|
|
return $helperSet->get('doctrine')->getManager($name); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Get a doctrine dbal connection by symfony name. |
61
|
|
|
* |
62
|
|
|
* @param string $name |
63
|
|
|
* |
64
|
|
|
* @return \Doctrine\DBAL\Connection |
65
|
|
|
*/ |
66
|
|
|
protected function getDoctrineConnection($name) |
67
|
|
|
{ |
68
|
|
|
$helperSet = $this->getHelperSet(); |
69
|
|
|
|
70
|
|
|
return $helperSet->get('doctrine')->getConnection($name); |
71
|
|
|
} |
72
|
|
|
} |
73
|
|
|
|