|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
namespace JMS\SecurityExtraBundle\Tests\Fixtures; |
|
|
4 |
|
|
|
5 |
use JMS\SecurityExtraBundle\Annotation\SecureReturn; |
|
|
6 |
use JMS\SecurityExtraBundle\Annotation\SecureParam; |
|
|
7 |
use JMS\SecurityExtraBundle\Annotation\Secure; |
|
|
8 |
|
|
|
9 |
interface AMNDOIDCS_Interface |
|
|
10 |
{ |
|
|
11 |
/** |
|
|
12 |
* @SecureReturn(permissions="VIEW") |
|
|
13 |
*/ |
|
|
14 |
function abstractMethod(); |
|
|
15 |
} |
|
|
16 |
|
|
|
17 |
abstract class AMNDOIDCS_DirectChild implements AMNDOIDCS_Interface |
|
|
18 |
{ |
|
|
19 |
} |
|
|
20 |
|
|
|
21 |
class AbstractMethodNotDirectlyOverwrittenInDirectChildService extends AMNDOIDCS_DirectChild |
|
|
22 |
{ |
|
|
23 |
/** |
|
|
24 |
* Some comment |
|
|
25 |
*/ |
|
|
26 |
public function abstractMethod() |
|
|
27 |
{ |
|
|
28 |
} |
|
|
29 |
} |