PageRenderTime 37ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/protected/extensions/doctrine/vendors/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php

https://bitbucket.org/NordLabs/yiidoctrine
PHP | 102 lines | 35 code | 9 blank | 58 comment | 1 complexity | 55442c3e28458b88411729d21f73b519 MD5 | raw file
Possible License(s): BSD-2-Clause, LGPL-2.1, BSD-3-Clause
  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. use ReflectionClass;
  21. use ReflectionProperty;
  22. /**
  23. * PHP Runtime Reflection Service
  24. *
  25. * @author Benjamin Eberlei <kontakt@beberlei.de>
  26. */
  27. class RuntimeReflectionService implements ReflectionService
  28. {
  29. /**
  30. * Return an array of the parent classes (not interfaces) for the given class.
  31. *
  32. * @param string $class
  33. * @return array
  34. */
  35. public function getParentClasses($class)
  36. {
  37. return class_parents($class);
  38. }
  39. /**
  40. * Return the shortname of a class.
  41. *
  42. * @param string $class
  43. * @return string
  44. */
  45. public function getClassShortName($class)
  46. {
  47. $r = new ReflectionClass($class);
  48. return $r->getShortName();
  49. }
  50. /**
  51. * @param string $class
  52. * @return string
  53. */
  54. public function getClassNamespace($class)
  55. {
  56. $r = new ReflectionClass($class);
  57. return $r->getNamespaceName();
  58. }
  59. /**
  60. * Return a reflection class instance or null
  61. *
  62. * @param string $class
  63. * @return ReflectionClass|null
  64. */
  65. public function getClass($class)
  66. {
  67. return new ReflectionClass($class);
  68. }
  69. /**
  70. * Return an accessible property (setAccessible(true)) or null.
  71. *
  72. * @param string $class
  73. * @param string $property
  74. * @return ReflectionProperty|null
  75. */
  76. public function getAccessibleProperty($class, $property)
  77. {
  78. $property = new ReflectionProperty($class, $property);
  79. $property->setAccessible(true);
  80. return $property;
  81. }
  82. /**
  83. * Check if the class have a public method with the given name.
  84. *
  85. * @param mixed $class
  86. * @param mixed $method
  87. * @return bool
  88. */
  89. public function hasPublicMethod($class, $method)
  90. {
  91. return method_exists($class, $method) && is_callable(array($class, $method));
  92. }
  93. }