Fix types with annotations [MAILPOET-2488]

This commit is contained in:
wxa
2019-12-26 18:07:52 +03:00
committed by amine-mp
parent bd1a84c5c3
commit 09a1411c81
18 changed files with 36 additions and 20 deletions

View File

@ -54,12 +54,14 @@ use MailPoet\WP\Functions as WPFunctions;
* @method static $this whereNotEqual($column_name, $value=null)
* @method $this whereIdIs($id)
* @method $this whereAnyIs($values, $operator='=')
* @method static $this whereAnyIs($values, $operator='=')
* @method $this whereIdIn($ids)
* @method static static whereIdIn($ids)
* @method $this whereLike($column_name, $value=null)
* @method static $this whereLike($column_name, $value=null)
* @method $this whereNotLike($column_name, $value=null)
* @method $this whereGt($column_name, $value=null)
* @method static $this whereGt($column_name, $value=null)
* @method static $this whereLt($column_name, $value=null)
* @method $this whereGte($column_name, $value=null)
* @method $this whereLte($column_name, $value=null)