diff --git a/src/VerifyBase.php b/src/VerifyBase.php index 6d07596..7a557d5 100644 --- a/src/VerifyBase.php +++ b/src/VerifyBase.php @@ -12,16 +12,16 @@ * Base class for other verify classes to inherit functionality from. * At this point, just the constructor and common properties to both. * - * @method self and() - * @method self be() - * @method self does() - * @method self doesNot() - * @method self has() - * @method self have() - * @method self is() - * @method self isNot() - * @method self will() - * @method self willNot() + * @method static does() Positive conjunction + * @method static has() Positive conjunction + * @method static is() Positive conjunction + * @method static will() Positive conjunction + * @method static and() Neutral conjunction + * @method static be() Neutral conjunction + * @method static have() Neutral conjunction + * @method static doesNot() Negative conjunction + * @method static isNot() Negative conjunction + * @method static willNot() Negative conjunction */ abstract class VerifyBase {