Applied fixes from StyleCI

This commit is contained in:
Dominik Liebler
2015-12-21 07:28:20 -05:00
committed by StyleCI Bot
parent 3663603b80
commit fe1f144ec3
167 changed files with 510 additions and 517 deletions

View File

@@ -1,13 +1,14 @@
<?php
namespace DesignPatterns\Behavioral\Specification;
/**
* An abstract specification allows the creation of wrapped specifications
* An abstract specification allows the creation of wrapped specifications.
*/
abstract class AbstractSpecification implements SpecificationInterface
{
/**
* Checks if given item meets all criteria
* Checks if given item meets all criteria.
*
* @param Item $item
*
@@ -16,7 +17,7 @@ abstract class AbstractSpecification implements SpecificationInterface
abstract public function isSatisfiedBy(Item $item);
/**
* Creates a new logical AND specification
* Creates a new logical AND specification.
*
* @param SpecificationInterface $spec
*
@@ -28,7 +29,7 @@ abstract class AbstractSpecification implements SpecificationInterface
}
/**
* Creates a new logical OR composite specification
* Creates a new logical OR composite specification.
*
* @param SpecificationInterface $spec
*
@@ -40,7 +41,7 @@ abstract class AbstractSpecification implements SpecificationInterface
}
/**
* Creates a new logical NOT specification
* Creates a new logical NOT specification.
*
* @return SpecificationInterface
*/