OneToManyAssociationBuilder.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the LGPL. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\ORM\Mapping\Builder;
  20. /**
  21. * OneToMany Association Builder
  22. *
  23. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  24. * @link www.doctrine-project.com
  25. * @since 2.0
  26. * @author Benjamin Eberlei <kontakt@beberlei.de>
  27. */
  28. class OneToManyAssociationBuilder extends AssociationBuilder
  29. {
  30. /**
  31. * @param array $fieldNames
  32. * @return OneToManyAssociationBuilder
  33. */
  34. public function setOrderBy(array $fieldNames)
  35. {
  36. $this->mapping['orderBy'] = $fieldNames;
  37. return $this;
  38. }
  39. public function setIndexBy($fieldName)
  40. {
  41. $this->mapping['indexBy'] = $fieldName;
  42. return $this;
  43. }
  44. /**
  45. * @return ClassMetadataBuilder
  46. */
  47. public function build()
  48. {
  49. $mapping = $this->mapping;
  50. if ($this->joinColumns) {
  51. $mapping['joinColumns'] = $this->joinColumns;
  52. }
  53. $cm = $this->builder->getClassMetadata();
  54. $cm->mapOneToMany($mapping);
  55. return $this->builder;
  56. }
  57. }