updated plugin WP-WebAuthn version 1.3.1

This commit is contained in:
2023-10-22 22:21:36 +00:00
committed by Gitium
parent 959829cf69
commit c7746517a0
931 changed files with 5408 additions and 1937 deletions

View File

@ -0,0 +1,40 @@
<?php
namespace Safe;
use Safe\Exceptions\UopzException;
/**
* Makes class extend parent
*
* @param string $class The name of the class to extend
* @param string $parent The name of the class to inherit
* @throws UopzException
*
*/
function uopz_extend(string $class, string $parent): void
{
error_clear_last();
$result = \uopz_extend($class, $parent);
if ($result === false) {
throw UopzException::createFromPhpError();
}
}
/**
* Makes class implement interface
*
* @param string $class
* @param string $interface
* @throws UopzException
*
*/
function uopz_implement(string $class, string $interface): void
{
error_clear_last();
$result = \uopz_implement($class, $interface);
if ($result === false) {
throw UopzException::createFromPhpError();
}
}