You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> as a peer dependency, which contains an annotation parsing engine. You need to
89
-
> manually install it using Composer:
86
+
> DocBlock annotations require [Doctrine's annotation parser `doctrine\annotations`](https://www.doctrine-project.org/projects/annotations.html) as a peer dependency, which contains an annotation parsing engine.
87
+
> You need to manually install it using Composer:
90
88
>
91
89
> ```bash
92
90
> $ composer require doctrine/annotations
@@ -143,10 +141,6 @@ filter with the appropriate inputs, and all elements.
143
141
144
142
### AllowEmpty
145
143
146
-
> ### Deprecated
147
-
>
148
-
> This annotation is deprecated, please add a `NotEmpty` validator instead.
149
-
150
144
Marks an input as allowing an empty value. This annotation does not require a value.
151
145
152
146
```php
@@ -181,10 +175,6 @@ protected $myProperty;
181
175
182
176
### ContinueIfEmpty
183
177
184
-
> ### Deprecated
185
-
>
186
-
> This annotation is deprecated, please add a `NotEmpty` validator instead.
187
-
188
178
Indicate whether the element can be submitted when it is empty. A boolean
189
179
value is expected, defaulting to `true`. If `@Required` is set to `false`,
190
180
`@ContinueIfEmpty(true)` or simply `@ContinueIfEmpty()`needs to be specified
0 commit comments