File: SerializableAclInterface.php

package info (click to toggle)
php-symfony-security-acl 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,020 kB
  • sloc: php: 5,169; sql: 273; makefile: 25; xml: 20
file content (12 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Symfony\Component\Security\Acl\Tests\Fixtures;

use Symfony\Component\Security\Acl\Model\AclInterface;

interface SerializableAclInterface extends AclInterface
{
    public function __serialize(): array;

    public function __unserialize(array $data): void;
}