Skip to content

Commit

Permalink
Merge pull request #60 from bbatsche/update-typehinting
Browse files Browse the repository at this point in the history
Typehinting Updates
  • Loading branch information
bbatsche authored Dec 1, 2021
2 parents fe48592 + 97d8947 commit ce3c1fc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/VerifyBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit ce3c1fc

Please sign in to comment.