File "PhpLockException.php"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/vibes/includes/libraries/lock/exception/PhpLockException.php
File size: 468 B (468 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php

declare(strict_types=1);

namespace malkusch\lock\exception;

/**
 * Common php-lock/lock exception interface.
 *
 * @author Petr Levtonov <petr@levtonov.com>
 * @license WTFPL
 *
 * @method string getMessage()
 * @method int getCode()
 * @method string getFile()
 * @method int getLine()
 * @method array getTrace()
 * @method string getTraceAsString()
 * @method \Throwable|null getPrevious()
 * @method string __toString()
 */
interface PhpLockException
{
}