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:
@@ -519,7 +519,7 @@ interface LanguagesValueInterface {
|
|||||||
* Given a language, returns the value in that language
|
* Given a language, returns the value in that language
|
||||||
*
|
*
|
||||||
* @param Language|int
|
* @param Language|int
|
||||||
* @return int
|
* @return string|mixed
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function getLanguageValue($languageID);
|
public function getLanguageValue($languageID);
|
||||||
|
@@ -208,7 +208,7 @@ class LanguagesPageFieldValue extends Wire implements LanguagesValueInterface, \
|
|||||||
* Given a language, returns the value in that language
|
* Given a language, returns the value in that language
|
||||||
*
|
*
|
||||||
* @param Language|int|string Language object, id, or name
|
* @param Language|int|string Language object, id, or name
|
||||||
* @return int
|
* @return string|mixed
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function getLanguageValue($languageID) {
|
public function getLanguageValue($languageID) {
|
||||||
|
Reference in New Issue
Block a user