From 97d8947a31de1547d1c4da496e9a84205ce2ab69 Mon Sep 17 00:00:00 2001 From: Ben Batschelet Date: Wed, 1 Dec 2021 13:12:49 -0600 Subject: [PATCH] Fix code style --- src/VerifyBase.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/VerifyBase.php b/src/VerifyBase.php index 1077d3c..7a557d5 100644 --- a/src/VerifyBase.php +++ b/src/VerifyBase.php @@ -12,15 +12,15 @@ * Base class for other verify classes to inherit functionality from. * At this point, just the constructor and common properties to both. * - * @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 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 isNot() Negative conjunction * @method static willNot() Negative conjunction */ abstract class VerifyBase