| 1 | <?php |
||
| 8 | abstract class RawMinkContext extends Context implements MinkAwareContext |
||
| 9 | { |
||
| 10 | private $mink; |
||
| 11 | |||
| 12 | private $minkParameters; |
||
| 13 | |||
| 14 | public function setMink(Mink $mink) |
||
| 18 | |||
| 19 | public function getMink() |
||
| 23 | |||
| 24 | public function setMinkParameters(array $parameters) |
||
| 28 | |||
| 29 | public function getMinkParameter($offset) |
||
| 40 | |||
| 41 | public function getSession($name = null) |
||
| 45 | |||
| 46 | public function assertSession($name = null) |
||
| 50 | |||
| 51 | public function locatePath($path) |
||
| 57 | } |
||
| 58 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.