1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-21 05:51:41 +02:00

Add PR #240 fix phpdoc return type in LanguagesPageFieldValue::getLanguageValue() method

This commit is contained in:
pine3ree
2022-09-16 10:31:19 -04:00
committed by Ryan Cramer
parent d02efe55f2
commit a2614b1a46
2 changed files with 2 additions and 2 deletions

View File

@@ -519,7 +519,7 @@ interface LanguagesValueInterface {
* Given a language, returns the value in that language
*
* @param Language|int
* @return int
* @return string|mixed
*
*/
public function getLanguageValue($languageID);

View File

@@ -208,7 +208,7 @@ class LanguagesPageFieldValue extends Wire implements LanguagesValueInterface, \
* Given a language, returns the value in that language
*
* @param Language|int|string Language object, id, or name
* @return int
* @return string|mixed
*
*/
public function getLanguageValue($languageID) {