1<?php
2
3/**
4 * @see       https://github.com/laminas/laminas-inputfilter for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-inputfilter/blob/master/COPYRIGHT.md
6 * @license   https://github.com/laminas/laminas-inputfilter/blob/master/LICENSE.md New BSD License
7 */
8
9namespace Laminas\InputFilter;
10
11/**
12 * @deprecated 2.4.8 Add Laminas\Validator\NotEmpty validator to the ValidatorChain.
13 */
14interface EmptyContextInterface
15{
16    /**
17     * @deprecated 2.4.8 Add Laminas\Validator\NotEmpty validator to the ValidatorChain and set this to `true`.
18     *
19     * @param bool $continueIfEmpty
20     * @return self
21     */
22    public function setContinueIfEmpty($continueIfEmpty);
23
24    /**
25     * @deprecated 2.4.8 Add Laminas\Validator\NotEmpty validator to the ValidatorChain. Should always return `true`.
26     *
27     * @return bool
28     */
29    public function continueIfEmpty();
30}
31