PageRenderTime 67ms CodeModel.GetById 16ms RepoModel.GetById 3ms app.codeStats 0ms

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

https://bitbucket.org/NordLabs/yiidoctrine
PHP | 107 lines | 69 code | 4 blank | 34 comment | 1 complexity | 7b755a16941dcc586d02919268838591 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 StaticReflectionService 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 array();
  38. }
  39. /**
  40. * Return the shortname of a class.
  41. *
  42. * @param string $className
  43. * @return string
  44. */
  45. public function getClassShortName($className)
  46. {
  47. if (strpos($className, '\\') !== false) {
  48. $className = substr($className, strrpos($className, "\\")+1);
  49. }
  50. return $className;
  51. }
  52. /**
  53. * Return the namespace of a class.
  54. *
  55. * @param string $className
  56. * @return string
  57. */
  58. public function getClassNamespace($className)
  59. {
  60. $namespace = '';
  61. if (strpos($className, '\\') !== false) {
  62. $namespace = strrev(substr( strrev($className), strpos(strrev($className), '\\')+1 ));
  63. }
  64. return $namespace;
  65. }
  66. /**
  67. * Return a reflection class instance or null
  68. *
  69. * @param string $class
  70. * @return ReflectionClass|null
  71. */
  72. public function getClass($class)
  73. {
  74. return null;
  75. }
  76. /**
  77. * Return an accessible property (setAccessible(true)) or null.
  78. *
  79. * @param string $class
  80. * @param string $property
  81. * @return ReflectionProperty|null
  82. */
  83. public function getAccessibleProperty($class, $property)
  84. {
  85. return null;
  86. }
  87. /**
  88. * Check if the class have a public method with the given name.
  89. *
  90. * @param mixed $class
  91. * @param mixed $method
  92. * @return bool
  93. */
  94. public function hasPublicMethod($class, $method)
  95. {
  96. return method_exists($class, $method) && is_callable(array($class, $method));
  97. }
  98. }