SchemaAlterTableRemoveColumnEventArgs.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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\DBAL\Event;
  20. use Doctrine\DBAL\Platforms\AbstractPlatform,
  21. Doctrine\DBAL\Schema\Column,
  22. Doctrine\DBAL\Schema\TableDiff;
  23. /**
  24. * Event Arguments used when SQL queries for removing table columns are generated inside Doctrine\DBAL\Platform\*Platform.
  25. *
  26. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  27. * @link www.doctrine-project.com
  28. * @since 2.2
  29. * @author Jan Sorgalla <jsorgalla@googlemail.com>
  30. */
  31. class SchemaAlterTableRemoveColumnEventArgs extends SchemaEventArgs
  32. {
  33. /**
  34. * @var \Doctrine\DBAL\Schema\Column
  35. */
  36. private $_column = null;
  37. /**
  38. * @var \Doctrine\DBAL\Schema\TableDiff
  39. */
  40. private $_tableDiff = null;
  41. /**
  42. * @var \Doctrine\DBAL\Platforms\AbstractPlatform
  43. */
  44. private $_platform = null;
  45. /**
  46. * @var array
  47. */
  48. private $_sql = array();
  49. /**
  50. * @param \Doctrine\DBAL\Schema\Column $column
  51. * @param \Doctrine\DBAL\Schema\TableDiff $tableDiff
  52. * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform
  53. */
  54. public function __construct(Column $column, TableDiff $tableDiff, AbstractPlatform $platform)
  55. {
  56. $this->_column = $column;
  57. $this->_tableDiff = $tableDiff;
  58. $this->_platform = $platform;
  59. }
  60. /**
  61. * @return \Doctrine\DBAL\Schema\Column
  62. */
  63. public function getColumn()
  64. {
  65. return $this->_column;
  66. }
  67. /**
  68. * @return \Doctrine\DBAL\Schema\TableDiff
  69. */
  70. public function getTableDiff()
  71. {
  72. return $this->_tableDiff;
  73. }
  74. /**
  75. * @return \Doctrine\DBAL\Platforms\AbstractPlatform
  76. */
  77. public function getPlatform()
  78. {
  79. return $this->_platform;
  80. }
  81. /**
  82. * @param string|array $sql
  83. * @return \Doctrine\DBAL\Event\SchemaAlterTableRemoveColumnEventArgs
  84. */
  85. public function addSql($sql)
  86. {
  87. if (is_array($sql)) {
  88. $this->_sql = array_merge($this->_sql, $sql);
  89. } else {
  90. $this->_sql[] = $sql;
  91. }
  92. return $this;
  93. }
  94. /**
  95. * @return array
  96. */
  97. public function getSql()
  98. {
  99. return $this->_sql;
  100. }
  101. }