diff --git a/Behavioral/Specification/Either.php b/Behavioral/Specification/Either.php index 10eff4f..3479460 100644 --- a/Behavioral/Specification/Either.php +++ b/Behavioral/Specification/Either.php @@ -15,7 +15,6 @@ class Either extends AbstractSpecification * * @param SpecificationInterface $left * @param SpecificationInterface $right - */ public function __construct(SpecificationInterface $left, SpecificationInterface $right) { diff --git a/Behavioral/Specification/Item.php b/Behavioral/Specification/Item.php index 53d9ac2..5889587 100644 --- a/Behavioral/Specification/Item.php +++ b/Behavioral/Specification/Item.php @@ -12,7 +12,6 @@ class Item * An item must have a price * * @param int $price - */ public function __construct($price) { diff --git a/Behavioral/Specification/Not.php b/Behavioral/Specification/Not.php index f46999d..64b5c10 100644 --- a/Behavioral/Specification/Not.php +++ b/Behavioral/Specification/Not.php @@ -13,7 +13,6 @@ class Not extends AbstractSpecification * Creates a new specification wrapping another * * @param SpecificationInterface $spec - */ public function __construct(SpecificationInterface $spec) {