| 1 | <?php |
||
| 31 | class PropagationAction |
||
| 32 | { |
||
| 33 | const PROPAGATION_INHIBIT = "NPR"; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * self::PROPAGATION_* |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $actionRequestCode; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * PropagationAction constructor. |
||
| 44 | * |
||
| 45 | * @param string $actionRequestCode self::PROPAGATION_* |
||
| 46 | */ |
||
| 47 | public function __construct($actionRequestCode) |
||
| 51 | } |
||
| 52 |