mirror of
https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-08-06 02:18:17 +08:00
modified: update-api/composer.json modified: update-api/composer.lock modified: update-api/vendor/composer/autoload_files.php modified: update-api/vendor/composer/autoload_psr4.php modified: update-api/vendor/composer/autoload_static.php modified: update-api/vendor/composer/installed.json modified: update-api/vendor/composer/installed.php
18 lines
295 B
PHP
18 lines
295 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation;
|
|
|
|
/** Interface for validation rules */
|
|
/**
|
|
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
*/
|
|
interface NonNegatable
|
|
{
|
|
}
|