protected final function setCityInstance (CityHelper $cityInstance) {
$this->cityInstance = $cityInstance;
}
-
- /**
- * "Getter" for a printable state name
- *
- * @return $stateName Name of the city's state in a printable format
- */
- public final function getPrintableState () {
- // Default is 'null'
- $stateName = 'null';
-
- // Get the state instance
- $stateInstance = $this->getStateInstance();
-
- // Is it an instance of Stateable?
- if ($stateInstance instanceof Stateable) {
- // Then use that state name
- $stateName = $stateInstance->getStateName();
- } // END - if
-
- // Return result
- return $stateName;
- }
}
// [EOF]