GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

SoapContextInterface
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 10

1 Method

Rating   Name   Duplication   Size   Complexity  
setSoapParameters() 0 1 ?
1
<?php
2
/**
3
 * @author Sergii Bondarenko, <[email protected]>
4
 */
5
namespace Behat\SoapExtension\Context;
6
7
use Behat\Behat\Context\Context;
8
9
/**
10
 * Interface SoapContextInterface.
11
 *
12
 * @package Behat\SoapExtension\Context
13
 */
14
interface SoapContextInterface extends Context
15
{
16
    /**
17
     * Set parameters from behat.yml.
18
     *
19
     * @param array $parameters
20
     *   An array of parameters from configuration file.
21
     */
22
    public function setSoapParameters(array $parameters);
23
}
24