OnClearEventArgs.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 MIT license. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\Common\Persistence\Event;
  20. use Doctrine\Common\EventArgs;
  21. use Doctrine\Common\Persistence\ObjectManager;
  22. /**
  23. * Provides event arguments for the onClear event.
  24. *
  25. * @link www.doctrine-project.org
  26. * @since 2.2
  27. * @author Roman Borschel <roman@code-factory.de>
  28. * @author Benjamin Eberlei <kontakt@beberlei.de>
  29. */
  30. class OnClearEventArgs extends EventArgs
  31. {
  32. /**
  33. * @var \Doctrine\Common\Persistence\ObjectManager
  34. */
  35. private $objectManager;
  36. /**
  37. * @var string|null
  38. */
  39. private $entityClass;
  40. /**
  41. * Constructor.
  42. *
  43. * @param ObjectManager $objectManager The object manager.
  44. * @param string|null $entityClass The optional entity class.
  45. */
  46. public function __construct($objectManager, $entityClass = null)
  47. {
  48. $this->objectManager = $objectManager;
  49. $this->entityClass = $entityClass;
  50. }
  51. /**
  52. * Retrieves the associated ObjectManager.
  53. *
  54. * @return \Doctrine\Common\Persistence\ObjectManager
  55. */
  56. public function getObjectManager()
  57. {
  58. return $this->objectManager;
  59. }
  60. /**
  61. * Returns the name of the entity class that is cleared, or null if all are cleared.
  62. *
  63. * @return string|null
  64. */
  65. public function getEntityClass()
  66. {
  67. return $this->entityClass;
  68. }
  69. /**
  70. * Returns whether this event clears all entities.
  71. *
  72. * @return bool
  73. */
  74. public function clearsAllEntities()
  75. {
  76. return ($this->entityClass === null);
  77. }
  78. }