Skip to content

Commit

Permalink
fix doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mikey179 committed Aug 4, 2014
1 parent c4997a4 commit 8ea1b6c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions src/main/php/broker/ParamBrokerMap.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ class ParamBrokerMap
/**
* list of build in param brokers
*
* @type \stubbles\input\param\broker\ParamBroker[]
* @type \stubbles\input\broker\param\ParamBroker[]
*/
private static $buildInParamBroker;
/**
* list of registered param brokers
*
* @type \stubbles\input\param\broker\ParamBroker[]
* @type \stubbles\input\broker\param\ParamBroker[]
*/
private $paramBroker;

Expand All @@ -40,8 +40,8 @@ public function __construct()
/**
* sets map of param brokers
*
* @param \stubbles\input\param\broker\ParamBroker[] $paramBrokers
* @return \stubbles\input\param\ParamBrokerMap
* @param \stubbles\input\broker\param\ParamBroker[] $paramBrokers
* @return \stubbles\input\broker\param\ParamBrokerMap
* @Inject(optional=true)
* @Map(stubbles\input\broker\param\ParamBroker.class)
*/
Expand All @@ -58,7 +58,7 @@ public function setParamBrokers(array $paramBrokers)
* retrieves param broker for given key
*
* @param string $key
* @return \stubbles\input\param\broker\ParamBroker
* @return \stubbles\input\broker\param\ParamBroker
* @throws \stubbles\lang\exception\RuntimeException
*/
public function getBroker($key)
Expand All @@ -73,7 +73,7 @@ public function getBroker($key)
/**
* returns list of build in param brokers
*
* @return \stubbles\input\param\broker\ParamBroker[]
* @return \stubbles\input\broker\param\ParamBroker[]
*/
public static function getBuildInParamBroker()
{
Expand Down
8 changes: 4 additions & 4 deletions src/main/php/broker/RequestBroker.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ class RequestBroker
/**
* the matcher to be used for methods and properties
*
* @type \stubbles\input\param\RequestBrokerMethods
* @type \stubbles\input\broker\RequestBrokerMethods
*/
private $brokerMethods;
/**
* factory to create filters with
*
* @type \stubbles\input\param\ParamBrokerMap
* @type \stubbles\input\broker\ParamBrokerMap
*/
private $paramBrokerMap;

/**
* constructor
*
* @param \stubbles\input\param\RequestBrokerMethods $brokerMethods
* @param \stubbles\input\param\ParamBrokerMap $paramBrokerMap
* @param \stubbles\input\broker\RequestBrokerMethods $brokerMethods
* @param \stubbles\input\broker\ParamBrokerMap $paramBrokerMap
* @Inject
*/
public function __construct(RequestBrokerMethods $brokerMethods, ParamBrokerMap $paramBrokerMap)
Expand Down
4 changes: 2 additions & 2 deletions src/main/php/broker/RequestBrokerFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class RequestBrokerFacade
/**
* factory to create filters with
*
* @type \stubbles\input\param\RequestBroker
* @type \stubbles\input\broker\RequestBroker
*/
private $requestBroker;
/**
Expand All @@ -41,7 +41,7 @@ class RequestBrokerFacade
* constructor
*
* @param \stubbles\input\Request $request
* @param \stubbles\input\param\RequestBroker $requestBroker
* @param \stubbles\input\broker\RequestBroker $requestBroker
* @param \stubbles\input\errors\ParamErrorMessages $errorMessages
* @Inject
*/
Expand Down
10 changes: 5 additions & 5 deletions src/main/php/broker/param/CustomDatespanParamBroker.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ private function getDate(Request $request, Annotation $annotation, $type)
/**
* handles single param
*
* @param \stubbles\input\Request $request
* @param string $paramName
* @param bool $required
* @param \stubbles\input\Request $request
* @param string $paramName
* @param bool $required
* @return \stubbles\input\valuereader\CommonValueReader
*/
private function readValue(Request $request, $paramName, $required, $default)
Expand All @@ -90,8 +90,8 @@ private function readValue(Request $request, $paramName, $required, $default)
/**
* reads default value from annotation
*
* @param \stubbles\lang\reflect\annotation\Annotation $annotation
* @param string $field
* @param \stubbles\lang\reflect\annotation\Annotation $annotation
* @param string $field
* @return \stubbles\date\Date
*/
private function parseDate(Annotation $annotation, $field)
Expand Down

0 comments on commit 8ea1b6c

Please sign in to comment.