1 | <?php |
||
19 | final class CompressionContext implements Context |
||
20 | { |
||
21 | use KernelDictionary; |
||
22 | |||
23 | /** |
||
24 | * @var null|CompressionMethodManager |
||
25 | */ |
||
26 | private $compressionMethodsManager = null; |
||
27 | /** |
||
28 | * @Given the compression methods manager factory is available |
||
29 | */ |
||
30 | public function theCompressionMethodsManagerFactoryIsAvailable() |
||
36 | |||
37 | /** |
||
38 | * @When I create an compression methods manager with method DEF |
||
39 | */ |
||
40 | public function iCreateAnCompressionMethodsManagerWithMethodDef() |
||
46 | |||
47 | /** |
||
48 | * @Then I should get a compression manager with method DEF |
||
49 | */ |
||
50 | public function iShouldGetACompressionManagerWithMethodDef() |
||
59 | } |
||
60 |