KONTOLODON
/
var
/
www
/
ojs-3.3.0-13
/
lib
/
pkp
/
lib
/
vendor
/
opis
/
closure
/
src
/
Nama File / Folder
Size
Action
ISecurityProvider.php
0.553KB
Hapus
Edit
Rename
<?php /* =========================================================================== * Copyright (c) 2018-2019 Zindex Software * * Licensed under the MIT License * =========================================================================== */ namespace Opis\Closure; interface ISecurityProvider { /** * Sign serialized closure * @param string $closure * @return array */ public function sign($closure); /** * Verify signature * @param array $data * @return bool */ public function verify(array $data); }