Skip to content

Commit

Permalink
Made base constraint abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharris committed Apr 23, 2018
1 parent 75cc773 commit 00c9a9e
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/TestSuite/Constraint/MailConstraintBase.php
Expand Up @@ -20,7 +20,7 @@
/**
* Base class for all mail assertion constraints
*/
class MailConstraintBase extends Constraint
abstract class MailConstraintBase extends Constraint
{

protected $at;
Expand Down Expand Up @@ -56,14 +56,4 @@ public function getEmails()

return $emails;
}

/**
* noop needed for abstract
*
* @return string
*/
public function toString()
{
return 'base constraint, do not use';
}
}

0 comments on commit 00c9a9e

Please sign in to comment.