| 1 | <?php |
||
| 21 | abstract class PrimaryRoute extends Route |
||
| 22 | { |
||
| 23 | |||
| 24 | const ROUTE_REQUEST_TYPE_ACTIVATION = 'ACTIVATION'; |
||
| 25 | |||
| 26 | const ROUTE_REQUEST_TYPE_REGULAR = 'REGULAR'; |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string $route_request_type |
||
| 31 | */ |
||
| 32 | protected $route_request_type; |
||
| 33 | |||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $route_request_type |
||
| 37 | */ |
||
| 38 | public function setRouteRequestType($route_request_type) |
||
| 42 | |||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getRouteRequestType() |
||
| 51 | } |
||
| 52 |