Issues (10)

src/Guards/Success.php (1 issue)

1
<?php
2
declare(strict_types=1);
3
4
namespace InputGuard\Guards;
5
6
interface Success
7
{
8
    /**
9
     * Validate the inputs for success.
10
     *
11
     * @return bool
12
     */
13
    public function success(): bool;
0 ignored issues
show
Coding Style Best Practice introduced by
Please use __construct() instead of a PHP4-style constructor that is named after the class.
Loading history...
14
}
15