| 1 | <?php |
||
| 32 | class HttpMethodCondition extends ObjectAbstract implements ConditionInterface |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * @var string[] |
||
| 36 | * @access protected |
||
| 37 | */ |
||
| 38 | protected $methods; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string|string[] $methods |
||
| 42 | * @access public |
||
| 43 | */ |
||
| 44 | public function __construct($methods) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function evaluate( |
||
| 58 | } |
||
| 59 |