| 1 | <?php |
||
| 24 | abstract class FeatureContext extends PageObjectContext implements MinkAwareContext |
||
|
|
|||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var Mink |
||
| 28 | */ |
||
| 29 | protected $mink; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var array |
||
| 33 | */ |
||
| 34 | protected $minkParameters; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function setMink(Mink $mink) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function setMinkParameters(array $parameters) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param string|null $name name of the session OR active session will be used |
||
| 54 | * |
||
| 55 | * @return Session |
||
| 56 | */ |
||
| 57 | public function getSession($name = null) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param string|null $name name of the session OR active session will be used |
||
| 64 | * |
||
| 65 | * @return WebAssert |
||
| 66 | */ |
||
| 67 | public function assertSession($name = null) |
||
| 71 | } |
||
| 72 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.