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

@@ -3,7 +3,7 @@
namespace DesignPatterns\Behavioral\ChainOfResponsibilities;
/**
* Handler is a generic handler in the chain of responsibilities
* Handler is a generic handler in the chain of responsibilities.
*
* Yes you could have a lighter CoR with a simpler handler but if you want your CoR
* to be extendable and decoupled, it's a better idea to do things like that in real
@@ -18,7 +18,7 @@ abstract class Handler
private $successor = null;
/**
* Append a responsibility to the end of chain
* Append a responsibility to the end of chain.
*
* A prepend method could be done with the same spirit
*
@@ -68,7 +68,7 @@ abstract class Handler
}
/**
* Each concrete handler has to implement the processing of the request
* Each concrete handler has to implement the processing of the request.
*
* @param Request $req
*