mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-01 20:50:15 +02:00
removes unnecessary newline in comments
This commit is contained in:
@@ -15,7 +15,6 @@ class Either extends AbstractSpecification
|
|||||||
*
|
*
|
||||||
* @param SpecificationInterface $left
|
* @param SpecificationInterface $left
|
||||||
* @param SpecificationInterface $right
|
* @param SpecificationInterface $right
|
||||||
|
|
||||||
*/
|
*/
|
||||||
public function __construct(SpecificationInterface $left, SpecificationInterface $right)
|
public function __construct(SpecificationInterface $left, SpecificationInterface $right)
|
||||||
{
|
{
|
||||||
|
@@ -12,7 +12,6 @@ class Item
|
|||||||
* An item must have a price
|
* An item must have a price
|
||||||
*
|
*
|
||||||
* @param int $price
|
* @param int $price
|
||||||
|
|
||||||
*/
|
*/
|
||||||
public function __construct($price)
|
public function __construct($price)
|
||||||
{
|
{
|
||||||
|
@@ -13,7 +13,6 @@ class Not extends AbstractSpecification
|
|||||||
* Creates a new specification wrapping another
|
* Creates a new specification wrapping another
|
||||||
*
|
*
|
||||||
* @param SpecificationInterface $spec
|
* @param SpecificationInterface $spec
|
||||||
|
|
||||||
*/
|
*/
|
||||||
public function __construct(SpecificationInterface $spec)
|
public function __construct(SpecificationInterface $spec)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user