1
0
mirror of synced 2025-02-22 15:13:13 +03:00

[DDC-551] Fixed some comments

This commit is contained in:
Alexander 2011-12-01 09:46:02 +01:00
parent f6d5f0481e
commit bf1cc29a2a

View File

@ -85,7 +85,7 @@ class FilterCollection
/** /**
* Enables a filter from the collection. * Enables a filter from the collection.
* *
* @param mixed $name Name of the filter. * @param string $name Name of the filter.
* *
* @throws \InvalidArgumentException If the filter does not exist. * @throws \InvalidArgumentException If the filter does not exist.
* *
@ -113,7 +113,7 @@ class FilterCollection
/** /**
* Disables a filter. * Disables a filter.
* *
* @param mixed $name Name of the filter. * @param string $name Name of the filter.
* *
* @return SQLFilter The disabled filter. * @return SQLFilter The disabled filter.
* *
@ -135,7 +135,7 @@ class FilterCollection
/** /**
* Get an enabled filter from the collection. * Get an enabled filter from the collection.
* *
* @param mixed $name Name of the filter. * @param string $name Name of the filter.
* *
* @return SQLFilter The filter. * @return SQLFilter The filter.
* *