1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
-
-
- namespace Doctrine\ORM\Tools\Event;
-
- use Doctrine\DBAL\Schema\Schema;
- use Doctrine\ORM\EntityManager;
-
-
- class GenerateSchemaEventArgs extends \Doctrine\Common\EventArgs
- {
- private $_em = null;
- private $_schema = null;
-
-
-
- public function __construct(EntityManager $em, Schema $schema)
- {
- $this->_em = $em;
- $this->_schema = $schema;
- }
-
-
-
- public function getEntityManager() {
- return $this->_em;
- }
-
-
-
- public function getSchema() {
- return $this->_schema;
- }
- }
|