2009-01-22 22:38:10 +03:00
|
|
|
<?php
|
2009-02-04 19:35:36 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
2009-01-22 22:38:10 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Annotations */
|
|
|
|
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineEntity extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $repositoryClass;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineInheritanceType extends \Annotation {}
|
|
|
|
final class DoctrineDiscriminatorColumn extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $name;
|
|
|
|
public $type;
|
|
|
|
public $length;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineDiscriminatorMap extends \Annotation {}
|
|
|
|
final class DoctrineDiscriminatorValue extends \Annotation {}
|
|
|
|
final class DoctrineSubClasses extends \Annotation {}
|
|
|
|
final class DoctrineId extends \Annotation {}
|
|
|
|
final class DoctrineGeneratedValue extends \Annotation {
|
2009-03-30 23:43:05 +04:00
|
|
|
public $strategy;
|
|
|
|
//public $generator;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineVersion extends \Annotation {}
|
|
|
|
final class DoctrineJoinColumn extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $name;
|
2009-02-04 19:35:36 +03:00
|
|
|
public $referencedColumnName;
|
|
|
|
public $unique = false;
|
|
|
|
public $nullable = true;
|
2009-01-22 22:38:10 +03:00
|
|
|
public $onDelete;
|
|
|
|
public $onUpdate;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineJoinColumns extends \Annotation {}
|
|
|
|
final class DoctrineColumn extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $type;
|
|
|
|
public $length;
|
2009-02-02 14:55:50 +03:00
|
|
|
public $unique = false;
|
|
|
|
public $nullable = false;
|
2009-05-28 15:13:12 +04:00
|
|
|
public $quote = false;
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineOneToOne extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $targetEntity;
|
|
|
|
public $mappedBy;
|
|
|
|
public $cascade;
|
2009-05-11 14:43:27 +04:00
|
|
|
public $fetch;
|
|
|
|
public $optional;
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineOneToMany extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $mappedBy;
|
|
|
|
public $targetEntity;
|
|
|
|
public $cascade;
|
2009-05-11 14:43:27 +04:00
|
|
|
public $fetch;
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineManyToOne extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $targetEntity;
|
|
|
|
public $cascade;
|
2009-05-11 14:43:27 +04:00
|
|
|
public $fetch;
|
|
|
|
public $optional;
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineManyToMany extends \Annotation {
|
2009-01-22 22:38:10 +03:00
|
|
|
public $targetEntity;
|
|
|
|
public $mappedBy;
|
|
|
|
public $cascade;
|
2009-05-11 14:43:27 +04:00
|
|
|
public $fetch;
|
2009-01-22 22:38:10 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineElementCollection extends \Annotation {
|
2009-02-04 19:35:36 +03:00
|
|
|
public $tableName;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineTable extends \Annotation {
|
2009-02-04 19:35:36 +03:00
|
|
|
public $name;
|
|
|
|
public $catalog;
|
|
|
|
public $schema;
|
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineJoinTable extends \Annotation {
|
2009-02-04 19:35:36 +03:00
|
|
|
public $name;
|
|
|
|
public $catalog;
|
|
|
|
public $schema;
|
|
|
|
public $joinColumns;
|
|
|
|
public $inverseJoinColumns;
|
2009-03-14 12:05:52 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineSequenceGenerator extends \Annotation {
|
2009-03-30 23:43:05 +04:00
|
|
|
//public $name;
|
|
|
|
public $sequenceName;
|
2009-03-14 12:05:52 +03:00
|
|
|
public $allocationSize = 20;
|
2009-03-30 23:43:05 +04:00
|
|
|
public $initialValue = 1;
|
|
|
|
/** The name of the class that defines the generator. */
|
|
|
|
//public $definingClass;
|
2009-03-14 12:05:52 +03:00
|
|
|
}
|
2009-05-29 01:06:24 +04:00
|
|
|
final class DoctrineChangeTrackingPolicy extends \Annotation {}
|