X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=sidebyside;f=CRM%2FCore%2FState.php;h=323dc3df39944a90de4783ed132d74712ba17a20;hb=4846df9154866b0a33ee8ec7a1f48c65c77b670b;hp=b5baf68f676fed0de9e8ee857785e17d6684ecb9;hpb=f830c1e1babd110a9ab90e9bc80fac327a4e22d5;p=civicrm-core.git diff --git a/CRM/Core/State.php b/CRM/Core/State.php index b5baf68f67..323dc3df39 100644 --- a/CRM/Core/State.php +++ b/CRM/Core/State.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 | +--------------------------------------------------------------------+ -*/ + */ /** * The basic state element. Each state element is linked to a form and @@ -39,7 +39,7 @@ class CRM_Core_State { /** - * State name + * State name. * @var string */ protected $_name; @@ -51,19 +51,19 @@ class CRM_Core_State { protected $_type; /** - * The state that precedes this state + * The state that precedes this state. * @var CRM_Core_State */ protected $_back; /** - * The state that succeeds this state + * The state that succeeds this state. * @var CRM_Core_State */ protected $_next; /** - * The state machine that this state is part of + * The state machine that this state is part of. * @var CRM_Core_StateMachine */ protected $_stateMachine; @@ -77,7 +77,7 @@ class CRM_Core_State { const START = 1, FINISH = 2, SIMPLE = 4; /** - * Constructor + * Constructor. * * @param string $name * Internal name of the state. @@ -174,7 +174,7 @@ class CRM_Core_State { } /** - * Getter for name + * Getter for name. * * @return string */ @@ -183,7 +183,7 @@ class CRM_Core_State { } /** - * Setter for name + * Setter for name. * * @return void */ @@ -192,11 +192,12 @@ class CRM_Core_State { } /** - * Getter for type + * Getter for type. * * @return int */ public function getType() { return $this->_type; } + }