[2.0] Fix for accidental commit to sandbox
This commit is contained in:
parent
bb6e54fba1
commit
c71b4ebd71
4 changed files with 6 additions and 26 deletions
|
@ -11,7 +11,7 @@ class Address {
|
||||||
private $id;
|
private $id;
|
||||||
/** @Column(type="string", length=255) */
|
/** @Column(type="string", length=255) */
|
||||||
private $street;
|
private $street;
|
||||||
/** @OneToOne(targetEntity="User", mappedBy="address", cascade={"persist"}) */
|
/** @OneToOne(targetEntity="User", mappedBy="address") */
|
||||||
private $user;
|
private $user;
|
||||||
|
|
||||||
public function getId() {
|
public function getId() {
|
||||||
|
|
|
@ -15,20 +15,9 @@ class User {
|
||||||
private $test;
|
private $test;
|
||||||
/**
|
/**
|
||||||
* @OneToOne(targetEntity="Address")
|
* @OneToOne(targetEntity="Address")
|
||||||
* @JoinColumns({
|
* @JoinColumn(name="address_id", referencedColumnName="id")
|
||||||
* @JoinColumn(name="address_id", referencedColumnName="id"),
|
|
||||||
* @JoinColumn(name="address2_id", referencedColumnName="id")
|
|
||||||
* })
|
|
||||||
*/
|
*/
|
||||||
private $address;
|
private $address;
|
||||||
/**
|
|
||||||
* @ManyToMany(targetEntity="Group")
|
|
||||||
* @JoinTable(name="user_group",
|
|
||||||
* joinColumns={@JoinColumn(name="user_id", referencedColumnName="id")},
|
|
||||||
* inverseJoinColumns={@JoinColumn(name="group_id", referencedColumnName="id")
|
|
||||||
* })
|
|
||||||
*/
|
|
||||||
private $groups;
|
|
||||||
|
|
||||||
public function getId() {
|
public function getId() {
|
||||||
return $this->id;
|
return $this->id;
|
||||||
|
|
|
@ -23,10 +23,8 @@ $config = new \Doctrine\ORM\Configuration();
|
||||||
$config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache);
|
$config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache);
|
||||||
|
|
||||||
$connectionOptions = array(
|
$connectionOptions = array(
|
||||||
'driver' => 'pdo_mysql',
|
'driver' => 'pdo_sqlite',
|
||||||
'user' => 'root',
|
'path' => 'database.sqlite'
|
||||||
'password' => '',
|
|
||||||
'dbname' => 'doctrine2'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
|
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
|
||||||
|
|
|
@ -14,7 +14,7 @@ $classLoader->register();
|
||||||
|
|
||||||
// Set up caches
|
// Set up caches
|
||||||
$config = new \Doctrine\ORM\Configuration;
|
$config = new \Doctrine\ORM\Configuration;
|
||||||
$cache = new \Doctrine\Common\Cache\ArrayCache;
|
$cache = new \Doctrine\Common\Cache\ApcCache;
|
||||||
$config->setMetadataCacheImpl($cache);
|
$config->setMetadataCacheImpl($cache);
|
||||||
$config->setQueryCacheImpl($cache);
|
$config->setQueryCacheImpl($cache);
|
||||||
|
|
||||||
|
@ -30,13 +30,6 @@ $em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
|
||||||
## PUT YOUR TEST CODE BELOW
|
## PUT YOUR TEST CODE BELOW
|
||||||
|
|
||||||
$user = new User;
|
$user = new User;
|
||||||
$user->setName('jwage');
|
|
||||||
|
|
||||||
$address = new Address;
|
$address = new Address;
|
||||||
$address->setStreet('6512 Mercomatic Court');
|
|
||||||
$address->setUser($user);
|
|
||||||
$user->setAddress($address);
|
|
||||||
|
|
||||||
$em->persist($user);
|
echo 'Hello World!';
|
||||||
$em->persist($address);
|
|
||||||
$em->flush();
|
|
Loading…
Add table
Reference in a new issue