ReflectionService.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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\Common\Persistence\Mapping;
  20. /**
  21. * Very simple reflection service abstraction.
  22. *
  23. * This is required inside metadata layers that may require either
  24. * static or runtime reflection.
  25. *
  26. * @author Benjamin Eberlei <kontakt@beberlei.de>
  27. */
  28. interface ReflectionService
  29. {
  30. /**
  31. * Return an array of the parent classes (not interfaces) for the given class.
  32. *
  33. * @param string $class
  34. * @return array
  35. */
  36. function getParentClasses($class);
  37. /**
  38. * Return the shortname of a class.
  39. *
  40. * @param string $class
  41. * @return string
  42. */
  43. function getClassShortName($class);
  44. /**
  45. * @param string $class
  46. * @return string
  47. */
  48. function getClassNamespace($class);
  49. /**
  50. * Return a reflection class instance or null
  51. *
  52. * @param string $class
  53. * @return ReflectionClass|null
  54. */
  55. function getClass($class);
  56. /**
  57. * Return an accessible property (setAccessible(true)) or null.
  58. *
  59. * @param string $class
  60. * @param string $property
  61. * @return ReflectionProperty|null
  62. */
  63. function getAccessibleProperty($class, $property);
  64. /**
  65. * Check if the class have a public method with the given name.
  66. *
  67. * @param mixed $class
  68. * @param mixed $method
  69. * @return bool
  70. */
  71. function hasPublicMethod($class, $method);
  72. }