From c597d895d6ba9849b15a3f0ce79994788564e7d7 Mon Sep 17 00:00:00 2001 From: Jessie Siat Date: Wed, 11 Jun 2014 14:05:03 +0800 Subject: [PATCH] removes unnecessary newline in comments --- Behavioral/Specification/Either.php | 1 - Behavioral/Specification/Item.php | 1 - Behavioral/Specification/Not.php | 1 - 3 files changed, 3 deletions(-) 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) {