minor #10740 [2.5] Fix doc blocks (romainneutron)

This PR was merged into the 2.5-dev branch.

Discussion
----------

[2.5] Fix doc blocks

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT

Last one on this topic, in master branch. This follows #10738 and #10737

Commits
-------

90294ec Fix doc blocks
This commit is contained in:
Fabien Potencier 2014-04-18 22:57:13 +02:00
commit 3568a69374
2 changed files with 5 additions and 2 deletions

View File

@ -79,8 +79,11 @@ class ModelChoiceList extends ObjectChoiceList
* @param array|ModelCriteria $preferred The preferred items of this choice.
* Either an array if $choices is given,
* or a ModelCriteria to be merged with the $queryObject.
* @param string $useAsIdentifier a custome unique column (eg slug) to use instead of primary key
* @param PropertyAccessorInterface $propertyAccessor The reflection graph for reading property paths.
* @param string $useAsIdentifier a custom unique column (eg slug) to use instead of primary key.
*
* @throws MissingOptionsException In case the class parameter is empty.
* @throws InvalidOptionsException In case the query class is not found.
*/
public function __construct($class, $labelPath = null, $choices = null, $queryObject = null, $groupPath = null, $preferred = array(), PropertyAccessorInterface $propertyAccessor = null, $useAsIdentifier = null)
{

View File

@ -242,7 +242,7 @@ class TableStyle
/**
* Gets cell padding type.
*
* @param int
* @return int
*/
public function getPadType()
{