| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Chekote\BehatRetryExtension\Definition\Exception; |
||
| 18 | public function __construct($keyword, Definition $definition) |
||
| 19 | { |
||
| 20 | parent::__construct( |
||
| 21 | sprintf( |
||
| 22 | "Step '%s' was matched but the wrong keyword '%s' was used. The step should be invoked with '%s'", |
||
| 23 | $definition->getPattern(), |
||
| 24 | $keyword, |
||
| 25 | $definition->getType() |
||
| 26 | ) |
||
| 30 |