X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FAPI%2FAbstractFieldCoder.php;h=d4efe23d1664e5267ba64d26275a1f707b39aeb7;hb=8671b4f2efb228dc654123b391fd794b23b99d49;hp=112f80a82d8833a3d8cbc41c58166708e2e15c2a;hpb=c6e262c51134924a9cc023dcb0613238fd1d0451;p=civicrm-core.git diff --git a/CRM/Utils/API/AbstractFieldCoder.php b/CRM/Utils/API/AbstractFieldCoder.php index 112f80a82d..d4efe23d16 100644 --- a/CRM/Utils/API/AbstractFieldCoder.php +++ b/CRM/Utils/API/AbstractFieldCoder.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * Base class for writing API_Wrappers which generically manipulate the content @@ -94,7 +94,7 @@ abstract class CRM_Utils_API_AbstractFieldCoder implements API_Wrapper { public abstract function decodeOutput(&$values); /** - * {@inheritDoc} + * @inheritDoc */ public function fromApiInput($apiRequest) { $lowerAction = strtolower($apiRequest['action']); @@ -119,7 +119,7 @@ abstract class CRM_Utils_API_AbstractFieldCoder implements API_Wrapper { } /** - * {@inheritDoc} + * @inheritDoc */ public function toApiOutput($apiRequest, $result) { $lowerAction = strtolower($apiRequest['action']); @@ -144,4 +144,5 @@ abstract class CRM_Utils_API_AbstractFieldCoder implements API_Wrapper { protected function isApiControlField($key) { return (FALSE !== strpos($key, '.')); } + }