StaticReflectionService.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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\Mapping;
  20. /**
  21. * PHP Runtime Reflection Service.
  22. *
  23. * @author Benjamin Eberlei <kontakt@beberlei.de>
  24. */
  25. class StaticReflectionService implements ReflectionService
  26. {
  27. /**
  28. * {@inheritDoc}
  29. */
  30. public function getParentClasses($class)
  31. {
  32. return array();
  33. }
  34. /**
  35. * {@inheritDoc}
  36. */
  37. public function getClassShortName($className)
  38. {
  39. if (strpos($className, '\\') !== false) {
  40. $className = substr($className, strrpos($className, "\\")+1);
  41. }
  42. return $className;
  43. }
  44. /**
  45. * {@inheritDoc}
  46. */
  47. public function getClassNamespace($className)
  48. {
  49. $namespace = '';
  50. if (strpos($className, '\\') !== false) {
  51. $namespace = strrev(substr( strrev($className), strpos(strrev($className), '\\')+1 ));
  52. }
  53. return $namespace;
  54. }
  55. /**
  56. * {@inheritDoc}
  57. */
  58. public function getClass($class)
  59. {
  60. return null;
  61. }
  62. /**
  63. * {@inheritDoc}
  64. */
  65. public function getAccessibleProperty($class, $property)
  66. {
  67. return null;
  68. }
  69. /**
  70. * {@inheritDoc}
  71. */
  72. public function hasPublicMethod($class, $method)
  73. {
  74. return method_exists($class, $method) && is_callable(array($class, $method));
  75. }
  76. }