You are here

abstract class BatUnitFieldHandlerBase in Booking and Availability Management API 7.2

Hierarchy

Expanded class hierarchy of BatUnitFieldHandlerBase

File

includes/bat_api.bat_unit_field_handler.inc, line 27

View source
abstract class BatUnitFieldHandlerBase implements BatUnitFieldHandlerInterface {

  /**
   * @var BatUnit
   */
  protected $unit;

  /**
   * @param BatUnit $unit
   */
  public function __construct(BatUnit $unit) {
    $this->unit = $unit;
  }

}

Members