[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 declare(strict_types=1); 4 5 namespace ProxyManager\Signature; 6 7 use ReflectionClass; 8 9 /** 10 * Generator for signatures to be used to check the validity of generated code 11 * 12 * @author Marco Pivetta <ocramius@gmail.com> 13 * @license MIT 14 */ 15 interface SignatureCheckerInterface 16 { 17 /** 18 * Checks whether the given signature is valid or not 19 * 20 * @return void 21 * 22 * @throws \ProxyManager\Signature\Exception\InvalidSignatureException 23 * @throws \ProxyManager\Signature\Exception\MissingSignatureException 24 */ 25 public function checkSignature(ReflectionClass $class, array $parameters); 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |