diff options
author | Nathaniel Catchpole | 2016-02-17 01:42:21 (GMT) |
---|---|---|
committer | Nathaniel Catchpole | 2016-02-17 01:42:21 (GMT) |
commit | 16f0342020f6c131f311ffb07fe2a2d53dcffb71 (patch) | |
tree | 5cb5d18c2db2fe262dcc282e3e326c37844c6b02 /core/modules/filter/filter.api.php | |
parent | 653e0a9b18cac8365d0bb0f3d5b01e02b1764c53 (diff) |
Issue #1811328 by sushyl, Mile23: Add missing type hinting to Filter module docblocks
Diffstat (limited to 'core/modules/filter/filter.api.php')
-rw-r--r-- | core/modules/filter/filter.api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modules/filter/filter.api.php b/core/modules/filter/filter.api.php index a2ba9b0..5bf973f 100644 --- a/core/modules/filter/filter.api.php +++ b/core/modules/filter/filter.api.php @@ -13,7 +13,7 @@ /** * Perform alterations on filter definitions. * - * @param $info + * @param array $info * Array of information on filters exposed by filter plugins. */ function hook_filter_info_alter(&$info) { @@ -48,7 +48,7 @@ function hook_filter_secure_image_alter(&$image) { /** * Perform actions when a text format has been disabled. * - * @param $format + * @param \Drupal\filter\FilterFormatInterface $format * The format object of the format being disabled. */ function hook_filter_format_disable($format) { |