vendor/bundles/JMS/SecurityExtraBundle/Tests/Fixtures/AbstractMethodNotDirectlyOverwrittenInDirectChildService.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/bundles/JMS/SecurityExtraBundle/Tests/Fixtures/AbstractMethodNotDirectlyOverwrittenInDirectChildService.php Sat Sep 24 15:40:41 2011 +0200
@@ -0,0 +1,29 @@
+<?php
+
+namespace JMS\SecurityExtraBundle\Tests\Fixtures;
+
+use JMS\SecurityExtraBundle\Annotation\SecureReturn;
+use JMS\SecurityExtraBundle\Annotation\SecureParam;
+use JMS\SecurityExtraBundle\Annotation\Secure;
+
+interface AMNDOIDCS_Interface
+{
+ /**
+ * @SecureReturn(permissions="VIEW")
+ */
+ function abstractMethod();
+}
+
+abstract class AMNDOIDCS_DirectChild implements AMNDOIDCS_Interface
+{
+}
+
+class AbstractMethodNotDirectlyOverwrittenInDirectChildService extends AMNDOIDCS_DirectChild
+{
+ /**
+ * Some comment
+ */
+ public function abstractMethod()
+ {
+ }
+}
\ No newline at end of file