File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
src/Standards/Squiz/Tests/Commenting Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -883,18 +883,18 @@ function yieldFromTest()
883
883
*
884
884
* Generates an audio element to embed sounds
885
885
*
886
- * @param mixed $src Either a source string or
886
+ * @param mixed $src Either a source string or
887
887
* an array of sources.
888
- * @param string $unsupportedMessage The message to display
888
+ * @param mixed $unsupportedMessage The message to display
889
889
* if the media tag is not supported by the browser.
890
- * @param string $attributes HTML attributes.
890
+ * @param mixed $attributes HTML attributes.
891
891
* @return string
892
892
*/
893
893
function audio (
894
894
$ src ,
895
- string $ unsupportedMessage = '' ,
896
- string $ attributes = '' ,
897
- ): string
895
+ $ unsupportedMessage = '' ,
896
+ $ attributes = '' ,
897
+ )
898
898
{
899
899
return 'test ' ;
900
900
}
Original file line number Diff line number Diff line change @@ -883,18 +883,18 @@ function yieldFromTest()
883
883
*
884
884
* Generates an audio element to embed sounds
885
885
*
886
- * @param mixed $src Either a source string or
886
+ * @param mixed $src Either a source string or
887
887
* an array of sources.
888
- * @param string $unsupportedMessage The message to display
888
+ * @param mixed $unsupportedMessage The message to display
889
889
* if the media tag is not supported by the browser.
890
- * @param string $attributes HTML attributes.
890
+ * @param mixed $attributes HTML attributes.
891
891
* @return string
892
892
*/
893
893
function audio(
894
894
$src,
895
- string $unsupportedMessage = '',
896
- string $attributes = '',
897
- ): string
895
+ $unsupportedMessage = '',
896
+ $attributes = '',
897
+ )
898
898
{
899
899
return 'test';
900
900
}
You can’t perform that action at this time.
0 commit comments