TqContextInterface
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 9

1 Method

Rating   Name   Duplication   Size   Complexity  
setTqParameters() 0 1 ?
1
<?php
2
/**
3
 * @author Sergii Bondarenko, <[email protected]>
4
 */
5
namespace Drupal\TqExtension\Context;
6
7
use Behat\Behat\Context\SnippetAcceptingContext;
8
9
interface TqContextInterface extends SnippetAcceptingContext
0 ignored issues
show
Deprecated Code introduced by
The interface Behat\Behat\Context\SnippetAcceptingContext has been deprecated with message: will be removed in 4.0. Use --snippets-for CLI option instead

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.

Loading history...
10
{
11
    /**
12
     * Set context parameters from behat.yml.
13
     *
14
     * @param array $parameters
15
     */
16
    public function setTqParameters(array $parameters);
17
}
18